test_bci2000.py 396 B

12345678910111213141516171819202122
  1. """
  2. Tests of neo.io.bci2000io
  3. """
  4. import unittest
  5. from neo.io import BCI2000IO
  6. from neo.test.iotest.common_io_test import BaseTestIO
  7. class TestBCI2000IO(BaseTestIO, unittest.TestCase, ):
  8. ioclass = BCI2000IO
  9. files_to_test = [
  10. 'eeg1_1.dat',
  11. 'eeg1_2.dat',
  12. 'eeg1_3.dat',
  13. ]
  14. files_to_download = files_to_test
  15. if __name__ == "__main__":
  16. unittest.main()