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