test_micromedio.py 473 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. """
  3. Tests of neo.io.neomatlabio
  4. """
  5. # needed for python 3 compatibility
  6. from __future__ import absolute_import, division
  7. import sys
  8. import unittest
  9. from neo.io import MicromedIO
  10. from neo.test.iotest.common_io_test import BaseTestIO
  11. class TestMicromedIO(BaseTestIO, unittest.TestCase, ):
  12. ioclass = MicromedIO
  13. files_to_test = ['File_micromed_1.TRC']
  14. files_to_download = files_to_test
  15. if __name__ == "__main__":
  16. unittest.main()