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)

pkgTests.PackagedTestCase
classdef PackagedTestCase < TestCase
    
% PACKAGEDTESTCASE This class demonstrates creating TestCases within
% packages.

   properties
   end

   methods
       function test_assert_nomsg(self)
           self.assert(true);
       end
       
       function test_assert_msg(self)
           self.assert(false, 'hey, don''t assert false!');
       end
   end
end 

Contact us at files@mathworks.com