diff --git a/tests/test_expcodes.m b/tests/test_expcodes.m index baa08c83aeae7c93a692617c229f3c7f6414c961..c1fafaa7b92ba4b18bbdce720ae60ec571b7fe6a 100644 --- a/tests/test_expcodes.m +++ b/tests/test_expcodes.m @@ -31,6 +31,26 @@ classdef test_expcodes < matlab.unittest.TestCase testCase.expcode_obj = getbymaincode(testCase.SCDexps,str2double(expcode_number)); end + function test_expcode_printInfo(testCase) + testCase.expcode_obj.printInfo + end + + function test_expcode_printparameters(testCase) + testCase.expcode_obj.printparameters + end + + function test_expcode_printwavegens(testCase) + testCase.expcode_obj.printwavegens; + end + + function test_expcode_printtasks(testCase) + testCase.expcode_obj.printtasks; + end + + function test_expcode_printinits(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);