File tree Expand file tree Collapse file tree 2 files changed +46
-0
lines changed
Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ """
2+ Tests of neo.io.BiocamIO
3+ """
4+
5+ import unittest
6+
7+ from neo .io import BiocamIO
8+ from neo .test .iotest .common_io_test import BaseTestIO
9+
10+
11+ class TestBiocamIO (BaseTestIO , unittest .TestCase , ):
12+ ioclass = BiocamIO
13+ entities_to_download = [
14+ 'biocam'
15+ ]
16+ entities_to_test = [
17+ 'biocam/test_biocam.brw'
18+ ]
19+
20+
21+ if __name__ == "__main__" :
22+ unittest .main ()
Original file line number Diff line number Diff line change 1+ """
2+ Tests of neo.rawio.BiocamRawIO
3+ """
4+
5+ import unittest
6+
7+ from neo .rawio .biocamrawio import BiocamRawIO
8+ from neo .test .rawiotest .common_rawio_test import BaseTestRawIO
9+
10+
11+ class TestBiocamRawIO (BaseTestRawIO , unittest .TestCase , ):
12+ rawioclass = BiocamRawIO
13+
14+ entities_to_download = [
15+ 'biocam/test_biocam.brw'
16+ ]
17+
18+ entities_to_download = [
19+ 'biocam' ,
20+ ]
21+
22+
23+ if __name__ == "__main__" :
24+ unittest .main ()
You can’t perform that action at this time.
0 commit comments