Skip to content
Snippets Groups Projects
test_tcv_get_ids.m 420 B
Newer Older
classdef (SharedTestFixtures={...
        check_mds,setup_gdatpaths})...
        test_tcv_get_ids < matlab.unittest.TestCase
  
  properties(TestParameter)
    shot = {'-1','40000','61400'};
    ids_name = {'pf_active','wall'};
  end
  
  methods(Test,TestTags = {'IMAS'})
    function test_tcv2ids(testCase,shot,ids_name)
      ids = tcv2ids(shot,ids_name);
      testCase.assertTrue(~isempty(ids))
    end
  end
  
end