Files
imdd_silas/Tests/05_Lab/DC_Supply_test.m
2024-09-24 11:30:25 +02:00

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