withAnyInputs
类: matlab.mock.MethodCallBehavior
命名空间: matlab.mock
使用任意数量的输入和任意值指定 mock 对象方法调用
语法
callBehavior = withAnyInputs(behavior)
说明
callBehavior = withAnyInputs(
返回 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(withAnyInputs(behavior.myMethod),"hello")
使用各种输入调用方法。
output = mock.myMethod
output = "hello"
output = mock.myMethod(123)
output = "hello"
output = myMethod("abc",mock)
output = "hello"
验证至少使用某组输入调用过一次该方法。
testCase.verifyCalled(withAnyInputs(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)