when
类: matlab.mock.MethodCallBehavior
命名空间: matlab.mock
指定 mock 对象方法的行为
语法
when(behavior,action)
输入参数
behavior
— mock 的行为
matlab.mock.MethodCallBehavior
实例
mock 的行为,指定为 matlab.mock.MethodCallBehavior
实例。要创建 matlab.mock.MethodCallBehavior
实例,请调用行为对象的方法。
示例: withExactInputs(myMockBehavior.myMockedMethod)
action
— 定义的动作
matlab.mock.actions.AssignOutputs
的实例 | matlab.mock.actions.Invoke
的实例 | matlab.mock.actions.DoNothing
的实例 | matlab.mock.actions.ThrowException
的实例
定义的动作,指定为 matlab.mock.actions.AssignOutputs
、matlab.mock.actions.Invoke
、matlab.mock.actions.DoNothing
或 matlab.mock.actions.ThrowException
的实例。
示例: AssignOutputs(7,13,42)
示例: ThrowException(MException('Account:deposit:Negative','Deposit amount must be positive.'))
示例
指定 mock 方法的行为
为 triangle 类创建一个 mock。该 mock 有一个方法,即 sideLengths
。
import matlab.mock.actions.AssignOutputs; testCase = matlab.mock.TestCase.forInteractiveUse; [mock,behavior] = testCase.createMock('AddedMethods',"sideLengths");
设置其行为。无论 sideLengths
方法的输入是什么,该 mock 都返回值 2、3 和 4。
when(withAnyInputs(behavior.sideLengths),AssignOutputs(2,3,4))
调用 mock 对象的 sideLengths
方法。
[a,b,c] = mock.sideLengths
a = 2
b = 3
c = 4
使用不同的输入再次调用 sideLengths
方法,这次只使用两个输出。
[a,b] = mock.sideLengths(13,"inputText")
a = 2
b = 3
版本历史记录
在 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)