Tagged Questions
1
vote
2answers
200 views
How to pass multiple parameters to tests that share the same setup code in Matlab xUnit?
According to "How to Write Tests That Share Common Set-Up Code" is it possible to:
function test_suite = testSetupExample
initTestSuite;
function fh = setup
fh = figure;
function teardown(fh)
...
0
votes
2answers
239 views
How to make MATLAB xUnit work on MATLAB R2008b (7.7)?
I copied the matlab_xunit folder to C:\Program Files, and included it (and its subfolders) on the MATLAB path. Now MATLAB recognizes new commands such as
runtests
But this command does not find any ...