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