12 lines
297 B
Matlab
12 lines
297 B
Matlab
classdef EQ_silas_ofc_test < matlab.unittest.TestCase
|
|
% Test class for EQ_silas_ofc
|
|
|
|
methods (Test)
|
|
function testExample(testCase)
|
|
% Example test case for EQ_silas_ofc
|
|
% Add your test code here
|
|
testCase.verifyTrue(true);
|
|
end
|
|
end
|
|
end
|