# AUTO-GENERATED by tools/checkspecs.py - DO NOT EDIT
from ..misc import SimpleThreshold


def test_SimpleThreshold_inputs():
    input_map = dict(
        threshold=dict(
            mandatory=True,
        ),
        volumes=dict(
            mandatory=True,
        ),
    )
    inputs = SimpleThreshold.input_spec()

    for key, metadata in list(input_map.items()):
        for metakey, value in list(metadata.items()):
            assert getattr(inputs.traits()[key], metakey) == value


def test_SimpleThreshold_outputs():
    output_map = dict(
        thresholded_volumes=dict(),
    )
    outputs = SimpleThreshold.output_spec()

    for key, metadata in list(output_map.items()):
        for metakey, value in list(metadata.items()):
            assert getattr(outputs.traits()[key], metakey) == value
