test_rawbinarysignalio.py 647 B

12345678910111213141516171819202122232425
  1. """
  2. Tests of io.rawbinarysignal
  3. """
  4. import unittest
  5. from neo.io import RawBinarySignalIO
  6. from neo.test.iotest.common_io_test import BaseTestIO
  7. class TestRawBinarySignalIO(BaseTestIO, unittest.TestCase, ):
  8. ioclass = RawBinarySignalIO
  9. files_to_test = ['File_rawbinary_10kHz_2channels_16bit.raw']
  10. files_to_download = files_to_test
  11. # Skip this test because there are not mechanisim
  12. # in neo.tests.iotests to set parameters for the ioclass
  13. # in a generic way. In that case nb_channel must be given
  14. # to pass the the set
  15. def test_write_then_read(self):
  16. pass
  17. if __name__ == "__main__":
  18. unittest.main()