test_rawmcsio.py 314 B

1234567891011121314
  1. import unittest
  2. from neo.io import RawMCSIO
  3. from neo.test.iotest.common_io_test import BaseTestIO
  4. class TestRawMcsIO(BaseTestIO, unittest.TestCase, ):
  5. ioclass = RawMCSIO
  6. files_to_test = ['raw_mcs_with_header_1.raw']
  7. files_to_download = files_to_test
  8. if __name__ == "__main__":
  9. unittest.main()