No BSD License  

Highlights from
MATUnit

from MATUnit by Timothy Wall
xUnit unit test framework for MATLAB

assertTrue(desc, expr)
function assertTrue(desc, expr)
% Assert an expression is true
% desc - description of the failure
% expr - expression to evaluate

if(expr == 0)
    fail(desc, printstack);
end

Contact us at files@mathworks.com