-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import unittest | ||
|
||
from neo.io import IntanBinaryIO | ||
from neo.test.iotest.common_io_test import BaseTestIO | ||
|
||
|
||
class TestIntanBinaryIO(BaseTestIO, unittest.TestCase, ): | ||
ioclass = IntanBinaryIO | ||
entities_to_download = [ | ||
'intan' | ||
] | ||
entities_to_test = [ | ||
'intan/simulated_intan_230816_095232/', | ||
'intan/simulated_intan_230816_182040/', | ||
] | ||
|
||
|
||
if __name__ == "__main__": | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import unittest | ||
|
||
from neo.rawio.intanbinaryrawio import IntanBinaryRawIO | ||
|
||
from neo.test.rawiotest.common_rawio_test import BaseTestRawIO | ||
|
||
|
||
class TestIntanBinaryRawIO(BaseTestRawIO, unittest.TestCase, ): | ||
rawioclass = IntanBinaryRawIO | ||
entities_to_download = [ | ||
'intan' | ||
] | ||
entities_to_test = [ | ||
'intan/simulated_intan_230816_095232/', | ||
'intan/simulated_intan_230816_182040/', | ||
] | ||
|
||
|
||
if __name__ == "__main__": | ||
unittest.main() |