test_winwcpio.py 459 B

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