Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

test_rawbinarysignalio.py 757 B

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