-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
MockSegmentationInterface
(#1067)
Co-authored-by: Szonja Weigl <[email protected]> Co-authored-by: Paul Adkisson <[email protected]>
- Loading branch information
1 parent
113527f
commit ad1e2a1
Showing
4 changed files
with
90 additions
and
2 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
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
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
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 |
---|---|---|
@@ -1,9 +1,19 @@ | ||
from neuroconv.tools.testing.data_interface_mixins import ( | ||
ImagingExtractorInterfaceTestMixin, | ||
SegmentationExtractorInterfaceTestMixin, | ||
) | ||
from neuroconv.tools.testing.mock_interfaces import ( | ||
MockImagingInterface, | ||
MockSegmentationInterface, | ||
) | ||
from neuroconv.tools.testing.mock_interfaces import MockImagingInterface | ||
|
||
|
||
class TestMockImagingInterface(ImagingExtractorInterfaceTestMixin): | ||
data_interface_cls = MockImagingInterface | ||
interface_kwargs = dict() | ||
|
||
|
||
class TestMockSegmentationInterface(SegmentationExtractorInterfaceTestMixin): | ||
|
||
data_interface_cls = MockSegmentationInterface | ||
interface_kwargs = dict() |