Exemplo n.º 1
0
def test_MRITessellate_outputs():
    output_map = dict(surface=dict(), )
    outputs = MRITessellate.output_spec()

    for key, metadata in output_map.items():
        for metakey, value in metadata.items():
            yield assert_equal, getattr(outputs.traits()[key], metakey), value
Exemplo n.º 2
0
def test_MRITessellate_outputs():
    output_map = dict(surface=dict())
    outputs = MRITessellate.output_spec()

    for key, metadata in output_map.items():
        for metakey, value in metadata.items():
            yield assert_equal, getattr(outputs.traits()[key], metakey), value
Exemplo n.º 3
0
def test_MRITessellate_inputs():
    input_map = dict(args=dict(argstr='%s',
    ),
    environ=dict(nohash=True,
    usedefault=True,
    ),
    ignore_exception=dict(nohash=True,
    usedefault=True,
    ),
    in_file=dict(argstr='%s',
    mandatory=True,
    position=-3,
    ),
    label_value=dict(argstr='%d',
    mandatory=True,
    position=-2,
    ),
    out_file=dict(argstr='./%s',
    genfile=True,
    position=-1,
    ),
    subjects_dir=dict(),
    terminal_output=dict(mandatory=True,
    nohash=True,
    ),
    tesselate_all_voxels=dict(argstr='-a',
    ),
    use_real_RAS_coordinates=dict(argstr='-n',
    ),
    )
    inputs = MRITessellate.input_spec()

    for key, metadata in input_map.items():
        for metakey, value in metadata.items():
            yield assert_equal, getattr(inputs.traits()[key], metakey), value
Exemplo n.º 4
0
def test_MRITessellate_inputs():
    input_map = dict(
        args=dict(argstr='%s', ),
        environ=dict(
            nohash=True,
            usedefault=True,
        ),
        ignore_exception=dict(
            nohash=True,
            usedefault=True,
        ),
        in_file=dict(
            argstr='%s',
            mandatory=True,
            position=-3,
        ),
        label_value=dict(
            argstr='%d',
            mandatory=True,
            position=-2,
        ),
        out_file=dict(
            argstr='./%s',
            genfile=True,
            position=-1,
        ),
        subjects_dir=dict(),
        terminal_output=dict(
            mandatory=True,
            nohash=True,
        ),
        tesselate_all_voxels=dict(argstr='-a', ),
        use_real_RAS_coordinates=dict(argstr='-n', ),
    )
    inputs = MRITessellate.input_spec()

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