Code covered by the BSD License  

Highlights from
MATLAB xUnit Test Framework

image thumbnail
from MATLAB xUnit Test Framework by Steve Eddins
MATLAB xUnit is a unit test framework for MATLAB code.

TestsToBeDiscovered
classdef TestsToBeDiscovered < TestCase

   methods
      function self = TestsToBeDiscovered(name)
         self = self@TestCase(name);
      end
      
      function testMethodA
      end
      
      function testMethodB
      end
      
      function notATestMethod
      end

   end

end

Contact us at files@mathworks.com