Skip to content
Snippets Groups Projects
Commit 24f59ffd authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

TEST: vecreg unit test

parent e21d8f5f
No related branches found
No related tags found
No related merge requests found
...@@ -541,6 +541,15 @@ def test_dtifit(): ...@@ -541,6 +541,15 @@ def test_dtifit():
assert res.stdout[0] == exp assert res.stdout[0] == exp
def test_vecreg():
with testenv('vecreg') as vecreg:
res = fw.vecreg('in', 'out', 'ref', warpfield='warp',
premat='premat.mat', interp='sinc', m='mask')
exp = f'{vecreg} -i in -o out -r ref --warpfield=warp ' \
'--premat=premat.mat --interp=sinc -m mask'
assert res.stdout[0] == exp
def test_xfibres(): def test_xfibres():
with testenv('xfibres') as xfibres: with testenv('xfibres') as xfibres:
res = fw.xfibres('data', 'mask', 'bvecs', 'bvals', res = fw.xfibres('data', 'mask', 'bvecs', 'bvals',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment