Files
miSim/test/parametricTestSuite.m

19 lines
380 B
Matlab

classdef parametricTestSuite < matlab.unittest.TestCase
methods (TestClassSetup)
% Shared setup for the entire test class
end
methods (TestMethodSetup)
% Setup for each test
end
methods (Test)
% Test methods
function unimplementedTest(testCase)
testCase.verifyFail("Unimplemented test");
end
end
end