17 lines
383 B
Matlab
17 lines
383 B
Matlab
classdef DC_Supply_test < matlab.unittest.TestCase
|
|
% Test class for DC_Supply
|
|
|
|
methods (Test)
|
|
function testExample(testCase)
|
|
% Example test case for DC_Supply
|
|
% Add your test code here
|
|
|
|
dc_supply = DC_supply("voltage",[0,9],"active",1);
|
|
|
|
dc_supply.set();
|
|
|
|
testCase.verifyTrue(true);
|
|
end
|
|
end
|
|
end
|