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