test_bci2000.py 506 B

1234567891011121314151617181920212223242526
  1. # -*- coding: utf-8 -*-
  2. """
  3. Tests of neo.io.bci2000io
  4. """
  5. # needed for python 3 compatibility
  6. from __future__ import absolute_import, division
  7. import unittest
  8. from neo.io import BCI2000IO
  9. from neo.test.iotest.common_io_test import BaseTestIO
  10. class TestBCI2000IO(BaseTestIO, unittest.TestCase, ):
  11. ioclass = BCI2000IO
  12. files_to_test = [
  13. 'eeg1_1.dat',
  14. 'eeg1_2.dat',
  15. 'eeg1_3.dat',
  16. ]
  17. files_to_download = files_to_test
  18. if __name__ == "__main__":
  19. unittest.main()