Skip to content
Snippets Groups Projects
test_SCDclass.m 342 B
Newer Older
classdef test_SCDclass < matlab.unittest.TestCase
  % test file for SCD interface class
  
  properties
    expcode = 1;
    shot = 65668;
  end
  
    function test_load(testCase)
      SCD.load(testCase.expcode);
    end
    
    function test_init(testCase)
      SCD.init(testCase.expcode,testCase.shot);
    end
  end
end