123456789101112131415161718192021 |
- """
- Tests of neo.io.elanio
- """
- import unittest
- from neo.io import ElanIO
- from neo.test.iotest.common_io_test import BaseTestIO
- class TestElanIO(BaseTestIO, unittest.TestCase, ):
- ioclass = ElanIO
- files_to_test = ['File_elan_1.eeg']
- files_to_download = ['File_elan_1.eeg',
- 'File_elan_1.eeg.ent',
- 'File_elan_1.eeg.pos',
- ]
- if __name__ == "__main__":
- unittest.main()
|