1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# AUTO-GENERATED by tools/checkspecs.py - DO NOT EDIT
from ..misc import ModifyAffine
def test_ModifyAffine_inputs():
input_map = dict(
transformation_matrix=dict(
usedefault=False,
),
volumes=dict(
mandatory=True,
),
)
inputs = ModifyAffine.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_ModifyAffine_outputs():
output_map = dict(
transformed_volumes=dict(),
)
outputs = ModifyAffine.output_spec()
for key, metadata in list(output_map.items()):
for metakey, value in list(metadata.items()):
assert getattr(outputs.traits()[key], metakey) == value
|