Skip to content
Snippets Groups Projects
check_mds.m 238 B
Newer Older
classdef check_mds < matlab.unittest.fixtures.Fixture
  methods
    function setup(fixture)
      fixture.assumeFalse(~exist('mdsdata','file'),'mdsdata not found - is mds on path?');
      % other environment checks here
    end
  end
end