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