Exemple #1
0
def test_CannyEdge_inputs():
    input_map = dict(
        args=dict(argstr='%s', ),
        environ=dict(
            nohash=True,
            usedefault=True,
        ),
        ignore_exception=dict(
            nohash=True,
            usedefault=True,
        ),
        inputVolume=dict(argstr='--inputVolume %s', ),
        lowerThreshold=dict(argstr='--lowerThreshold %f', ),
        outputVolume=dict(
            argstr='--outputVolume %s',
            hash_files=False,
        ),
        terminal_output=dict(nohash=True, ),
        upperThreshold=dict(argstr='--upperThreshold %f', ),
        variance=dict(argstr='--variance %f', ),
    )
    inputs = CannyEdge.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_CannyEdge_inputs():
    input_map = dict(args=dict(argstr='%s',
    ),
    environ=dict(nohash=True,
    usedefault=True,
    ),
    ignore_exception=dict(nohash=True,
    usedefault=True,
    ),
    inputVolume=dict(argstr='--inputVolume %s',
    ),
    lowerThreshold=dict(argstr='--lowerThreshold %f',
    ),
    outputVolume=dict(argstr='--outputVolume %s',
    hash_files=False,
    ),
    terminal_output=dict(nohash=True,
    ),
    upperThreshold=dict(argstr='--upperThreshold %f',
    ),
    variance=dict(argstr='--variance %f',
    ),
    )
    inputs = CannyEdge.input_spec()

    for key, metadata in input_map.items():
        for metakey, value in metadata.items():
            yield assert_equal, getattr(inputs.traits()[key], metakey), value
Exemple #3
0
def test_CannyEdge_outputs():
    output_map = dict(outputVolume=dict(), )
    outputs = CannyEdge.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_CannyEdge_outputs():
    output_map = dict(outputVolume=dict(),
    )
    outputs = CannyEdge.output_spec()

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