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