Ejemplo n.º 1
0
def test_SimpleThreshold_outputs():
    output_map = dict(thresholded_volumes=dict(), )
    outputs = SimpleThreshold.output_spec()

    for key, metadata in output_map.items():
        for metakey, value in metadata.items():
            yield assert_equal, getattr(outputs.traits()[key], metakey), value
Ejemplo n.º 2
0
def test_SimpleThreshold_outputs():
    output_map = dict(thresholded_volumes=dict(),
    )
    outputs = SimpleThreshold.output_spec()

    for key, metadata in output_map.items():
        for metakey, value in metadata.items():
            yield assert_equal, getattr(outputs.traits()[key], metakey), value
Ejemplo n.º 3
0
def test_SimpleThreshold_inputs():
    input_map = dict(
        ignore_exception=dict(
            nohash=True,
            usedefault=True,
        ),
        threshold=dict(mandatory=True, ),
        volumes=dict(mandatory=True, ),
    )
    inputs = SimpleThreshold.input_spec()

    for key, metadata in input_map.items():
        for metakey, value in metadata.items():
            yield assert_equal, getattr(inputs.traits()[key], metakey), value
Ejemplo n.º 4
0
def test_SimpleThreshold_inputs():
    input_map = dict(threshold=dict(mandatory=True,
    ),
    ignore_exception=dict(nohash=True,
    usedefault=True,
    ),
    volumes=dict(mandatory=True,
    ),
    )
    inputs = SimpleThreshold.input_spec()

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