beginning to write parametric tests
This commit is contained in:
19
test/parametricTestSuite.m
Normal file
19
test/parametricTestSuite.m
Normal file
@@ -0,0 +1,19 @@
|
||||
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
|
||||
Reference in New Issue
Block a user