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