How does one use AssertCalled (when testing with mock objects)?
12 次查看(过去 30 天)
显示 更早的评论
This form keeps hanging on me, so I'll paste an image from the previous (hung) session:

Basically, I'm guessing the mock object is the "behavior".
That doesn't seem right, but that page gives no other clue...
The generate function is declared as:
function [trajectory] = generate(this) %#codegen
That is, it's a public class function with no other inputs except the mandatory first parameter.
How do I get this to work?
1 个评论
Tommy
2020-5-14
I may be misunderstanding the docs but it seems like you need to request the matlab.mock.MethodCallBehavior object when you call createMock:
[generator, behavior] = this.createMock(?TrajectoryGenerator, ci, {this.simParams, this.simState});
and then
this.assertCalled(behavior.generate(), 'a string');
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Mock Dependencies in Tests 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!