withExactInputs
类: matlab.mock.MethodCallBehavior
命名空间: matlab.mock
指定 mock 对象方法调用只使用对象作为输入
语法
callBehavior = withExactInputs(behavior)
说明
callBehavior = withExactInputs(
返回 behavior
)MethodCallBehavior
对象,用于定义在仅使用该对象作为输入调用 mock 对象方法时的行为。
输入参数
behavior
— mock 的行为
matlab.mock.MethodCallBehavior
实例
mock 的行为,指定为 matlab.mock.MethodCallBehavior
实例。要创建 matlab.mock.MethodCallBehavior
实例,请调用行为对象的方法。
示例: myMockBehavior.myMockedMethod
示例
只使用对象指定方法调用
使用 myMethod
方法创建一个 mock。
testCase = matlab.mock.TestCase.forInteractiveUse; [mock,behavior] = testCase.createMock('AddedMethods',{'myMethod'});
设置其行为。如果方法调用只使用对象作为输入,则返回 "hello"
。
testCase.assignOutputsWhen(withExactInputs(behavior.myMethod),"hello")
方法调用只使用对象作为输入。
output = myMethod(mock)
output = "hello"
使用其他输入调用方法。由于未定义这种行为,mock 将返回默认值。
output = mock.myMethod(123)
output = []
验证至少只使用对象作为输入调用过一次该方法。
testCase.verifyCalled(withExactInputs(behavior.myMethod))
Verification passed.
版本历史记录
在 R2017a 中推出
另请参阅
MATLAB 命令
您点击的链接对应于以下 MATLAB 命令:
请在 MATLAB 命令行窗口中直接输入以执行命令。Web 浏览器不支持 MATLAB 命令。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)