Class: matlab.unittest.fixtures.Fixture
Package: matlab.unittest.fixtures
Dynamically add teardown routine to Fixture
instance
addTeardown(fixture,tearDownFcn)
addTeardown(fixture,tearDownFcn,arg1,...,argN)
addTeardown(
adds the fixture
,tearDownFcn
)tearDownFcn
function handle that defines fixture teardown code
to the fixture
instance. The teardown code is executed in the reverse
order to which it is added. This is known as LIFO (or last-in, first-out).
addTeardown(
provides input arguments to the
fixture
,tearDownFcn
,arg1,...,argN
)tearDownFcn
.
|
|
|
Function that defines the fixture teardown code, specified as a function handle. |
|
Input arguments required by |