cantera/ext/matlab_xunit/+xunit/+utils/isTearDownString.m
Ray Speth bac65b26a1 Added machinery for unit testing of the Matlab toolbox
Unit tests are written using the Matlab xUnit Test Framework
2012-03-13 17:32:10 +00:00

12 lines
540 B
Matlab

function tf = isTearDownString(str)
%isTearDownString True if string looks like the name of a teardown function
% tf = isTearDownString(str) returns true if the string str looks like the
% name of a teardown function. If str is a cell array of strings, then
% isTearDownString tests each string in the cell array, returning the results
% in a logical array with the same size as str.
% Steven L. Eddins
% Copyright 2008-2009 The MathWorks, Inc.
setup_exp = '^[tT]ear[dD]own';
tf = xunit.utils.containsRegexp(str, setup_exp);