Пример #1
0
def test_ThresholdScalarVolume_inputs():
    input_map = dict(
        InputVolume=dict(
            argstr='%s',
            position=-2,
        ),
        OutputVolume=dict(
            argstr='%s',
            hash_files=False,
            position=-1,
        ),
        args=dict(argstr='%s', ),
        environ=dict(
            nohash=True,
            usedefault=True,
        ),
        ignore_exception=dict(
            nohash=True,
            usedefault=True,
        ),
        lower=dict(argstr='--lower %d', ),
        outsidevalue=dict(argstr='--outsidevalue %d', ),
        terminal_output=dict(
            mandatory=True,
            nohash=True,
        ),
        threshold=dict(argstr='--threshold %d', ),
        thresholdtype=dict(argstr='--thresholdtype %s', ),
        upper=dict(argstr='--upper %d', ),
    )
    inputs = ThresholdScalarVolume.input_spec()

    for key, metadata in input_map.items():
        for metakey, value in metadata.items():
            yield assert_equal, getattr(inputs.traits()[key], metakey), value
def test_ThresholdScalarVolume_inputs():
    input_map = dict(InputVolume=dict(argstr='%s',
    position=-2,
    ),
    OutputVolume=dict(argstr='%s',
    hash_files=False,
    position=-1,
    ),
    args=dict(argstr='%s',
    ),
    environ=dict(nohash=True,
    usedefault=True,
    ),
    ignore_exception=dict(nohash=True,
    usedefault=True,
    ),
    lower=dict(argstr='--lower %d',
    ),
    outsidevalue=dict(argstr='--outsidevalue %d',
    ),
    terminal_output=dict(mandatory=True,
    nohash=True,
    ),
    threshold=dict(argstr='--threshold %d',
    ),
    thresholdtype=dict(argstr='--thresholdtype %s',
    ),
    upper=dict(argstr='--upper %d',
    ),
    )
    inputs = ThresholdScalarVolume.input_spec()

    for key, metadata in input_map.items():
        for metakey, value in metadata.items():
            yield assert_equal, getattr(inputs.traits()[key], metakey), value
Пример #3
0
def test_ThresholdScalarVolume_outputs():
    output_map = dict(OutputVolume=dict(position=-1, ), )
    outputs = ThresholdScalarVolume.output_spec()

    for key, metadata in output_map.items():
        for metakey, value in metadata.items():
            yield assert_equal, getattr(outputs.traits()[key], metakey), value
def test_ThresholdScalarVolume_outputs():
    output_map = dict(OutputVolume=dict(position=-1,
    ),
    )
    outputs = ThresholdScalarVolume.output_spec()

    for key, metadata in output_map.items():
        for metakey, value in metadata.items():
            yield assert_equal, getattr(outputs.traits()[key], metakey), value