beginning to write parametric tests

This commit is contained in:
2026-01-13 15:15:42 -08:00
parent ff02e8a1c6
commit df31c2f03c
6 changed files with 35 additions and 13 deletions

View 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