classdef test_SCDclass < matlab.unittest.TestCase % test file for SCD interface class properties expcode = 1; shot = 65668; end methods(Test) function test_load(testCase) SCD.load(testCase.expcode); end function test_init(testCase) SCD.init(testCase.expcode,testCase.shot); end end end