You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
399 B

7 years ago
  1. import unittest
  2. from os import path
  3. import numpy as np
  4. from nd2reader.artificial import ArtificialND2
  5. from nd2reader.common import check_or_make_dir
  6. from nd2reader.exceptions import EmptyFileError
  7. from nd2reader.parser import Parser
  8. from nd2reader.reader import ND2Reader
  9. class TestReader(unittest.TestCase):
  10. def test_extension(self):
  11. self.assertTrue('nd2' in ND2Reader.class_exts())