Files
imdd_silas/Tests/04_DSP/Equalizer/EQ_copy_test.m
2024-09-06 15:53:32 +02:00

12 lines
282 B
Matlab

classdef EQ_copy_test < matlab.unittest.TestCase
% Test class for EQ_copy
methods (Test)
function testExample(testCase)
% Example test case for EQ_copy
% Add your test code here
testCase.verifyTrue(true);
end
end
end