Code covered by the BSD License  

Highlights from
mlunit_2008a

image thumbnail
from mlunit_2008a by Christopher
A MATLAB unit test framework supporting new classdef files (r2008a)

TestRunner
classdef TestRunner < handle
% TESTRUNNER Abstract superclass for test runners.
%
% This class is part of the mlunit_2008a testing framework.
%
% See also GUITESTRUNNER, TEXTTESTRUNNER.

   properties
       test
       testResult
   end

   methods
       function initialize(self)
           self.testResult = self.test.getNewTestResult();
           self.testResult.initialize();
       end
   end
end 

Contact us