test_elanio.py 459 B

123456789101112131415161718192021
  1. """
  2. Tests of neo.io.elanio
  3. """
  4. import unittest
  5. from neo.io import ElanIO
  6. from neo.test.iotest.common_io_test import BaseTestIO
  7. class TestElanIO(BaseTestIO, unittest.TestCase, ):
  8. ioclass = ElanIO
  9. files_to_test = ['File_elan_1.eeg']
  10. files_to_download = ['File_elan_1.eeg',
  11. 'File_elan_1.eeg.ent',
  12. 'File_elan_1.eeg.pos',
  13. ]
  14. if __name__ == "__main__":
  15. unittest.main()