No BSD License
Highlights from
MATUnit
from
MATUnit
by Timothy Wall
xUnit unit test framework for MATLAB
|
| assertFalse(desc, expr) |
function assertFalse(desc, expr)
% Assert an expression is false
% desc - description of the failure
% expr - expression to evaluate
if(expr ~= 0)
fail(desc, printstack);
end
|
|
Contact us at files@mathworks.com