test_bci2000rawio.py 440 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. """
  3. Tests of neo.rawio.bci2000rawio
  4. """
  5. import unittest
  6. from neo.rawio.bci2000rawio import BCI2000RawIO
  7. from neo.rawio.tests.common_rawio_test import BaseTestRawIO
  8. class TestBCI2000RawIO(BaseTestRawIO, unittest.TestCase, ):
  9. rawioclass = BCI2000RawIO
  10. files_to_download = ['eeg1_1.dat', 'eeg1_2.dat', 'eeg1_3.dat']
  11. entities_to_test = files_to_download
  12. if __name__ == "__main__":
  13. unittest.main()