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