applyFixture
类: matlab.unittest.TestCase
命名空间: matlab.unittest
将脚手架与测试用例配合使用
说明
applyFixture(
设置与测试用例配合使用的指定脚手架,然后在测试后拆解该脚手架。testCase
,fixture
)
在 Test
方法、TestMethodSetup
方法或 TestClassSetup
方法中使用 applyFixture
。设置和拆解操作的时间和频率取决于在其中调用方法的作用域:
Test
方法 -applyFixture
方法为当前测试设置脚手架,并在测试运行后拆解该脚手架。TestMethodSetup
方法 -applyFixture
方法在测试类中的每个测试之前设置脚手架并在该测试后拆解该脚手架。TestClassSetup
方法 -applyFixture
方法为整个测试类设置一次脚手架,并在类中的所有测试运行后拆解该脚手架。
f = applyFixture(
通过将脚手架作为 testCase
,fixture
)matlab.unittest.fixtures.Fixture
对象返回,在设置后提供对脚手架的访问。
输入参数
示例
版本历史记录
在 R2013b 中推出