% Run all custom tests i.e. all tests that aren't autogen
0001 %% Run all custom tests 0002 % i.e. all tests that aren't autogen 0003 import matlab.unittest.TestSuite 0004 import matlab.unittest.selectors.HasTag 0005 0006 %% Make Test Suite 0007 fullSuite = TestSuite.fromPackage('dsUnit'); 0008 fullSuite = fullSuite.selectIf(~HasTag('query')); 0009 fullSuite = fullSuite.selectIf(~HasTag('autogen')); 0010 0011 %% Run Test Suite 0012 result = run(fullSuite);