Skip to content
Snippets Groups Projects
Commit c4c36ef5 authored by Federico Felici's avatar Federico Felici
Browse files

Revert to running all expcodes in the same job

parent 89fee06a
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ classdef test_expcodes < matlab.unittest.TestCase
properties(ClassSetupParameter)
expcode = {'1','1005','1006'}; % list of expcodes to test
end
methods(TestClassSetup)
function setup_environment(testCase)
testCase.addTeardown(@cd,pwd);
......@@ -56,20 +56,18 @@ classdef test_expcodes < matlab.unittest.TestCase
testCase.expcode_obj.printinits
end
function test_expcode_setup(testCase)
fprintf('\n=== Testing callinits for expcode %d: %s === \n',...
testCase.expcode_obj.maincode,...
testCase.expcode_obj.name);
function test_expcode_setup(testCase)
fprintf('\n=== Testing setup for expcode %d: %s === \n',...
testCase.expcode_obj.maincode,...
testCase.expcode_obj.name);
testCase.expcode_obj.maincode,...
testCase.expcode_obj.name);
testCase.expcode_obj.setup; % run setup this exp code
end
function test_callinits(testCase)
testCase.expcode_obj.callinits;
fprintf('\n=== Testing callinits for expcode %d: %s === \n',...
testCase.expcode_obj.maincode,...
testCase.expcode_obj.name);
testCase.expcode_obj.callinits;
end
function test_actualize(testCase)
......
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