Skip to content

Commit

Permalink
debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD committed Jul 17, 2024
1 parent 1d6fede commit 1d68a4a
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions src/pynwb/tests/test_constructors.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,15 +129,26 @@ def test_constructor_multi_channel_microscopy_volume():

def test_constructor_variable_depth_multi_channel_microscopy_volume():
microscope = mock_Microscope()
light_source = mock_MicroscopyLightSource()
imaging_space = mock_VolumetricImagingSpace(microscope=microscope)
optical_channel = mock_MicroscopyOpticalChannel()
light_sources = [mock_MicroscopyLightSource()]
optical_channels = [mock_MicroscopyOpticalChannel()]

light_sources_used_by_volume = pynwb.base.VectorData(
name="light_sources", description="Light sources used by this MultiChannelVolume.", data=light_sources
)
optical_channels_used_by_volume = pynwb.base.VectorData(
name="optical_channels",
description=(
"Optical channels ordered to correspond to the third axis (e.g., [0, 0, :, 0]) "
"of the data for this MultiChannelVolume."
),
data=optical_channels,
)
mock_VariableDepthMultiChannelMicroscopyVolume(
microscope=microscope,
imaging_space=imaging_space,
light_sources=[light_source],
optical_channels=[optical_channel],
light_sources=light_sources_used_by_volume,
optical_channels=optical_channels_used_by_volume,
)


Expand Down

0 comments on commit 1d68a4a

Please sign in to comment.