test_rawmcsio.py 437 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. # needed for python 3 compatibility
  3. from __future__ import absolute_import, division
  4. import sys
  5. import unittest
  6. from neo.io import RawMCSIO
  7. from neo.test.iotest.common_io_test import BaseTestIO
  8. class TestRawMcsIO(BaseTestIO, unittest.TestCase, ):
  9. ioclass = RawMCSIO
  10. files_to_test = ['raw_mcs_with_header_1.raw']
  11. files_to_download = files_to_test
  12. if __name__ == "__main__":
  13. unittest.main()