Objective C - OCMock 和存根?

发布于 2024-11-04 20:27:22 字数 227 浏览 0 评论 0原文

是否可以拥有一个类的实际对象,并且只模拟该类中的一个方法,而不是模拟整个对象?

我希望该对象的行为与真实对象 100% 相同,除了 1 个方法之外。

前任:

MyObject *object = [[MyObject alloc] init];
[[[object stub] andReturn:@"some_string"] getMyString];

Is it possible to have an actual object of a class and only mock a method in that class instead of mocking the whole object?

I want the object to behave 100% the same as the real object except 1 method.

Ex:

MyObject *object = [[MyObject alloc] init];
[[[object stub] andReturn:@"some_string"] getMyString];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

箹锭⒈辈孓 2024-11-11 20:27:22

是的,这就是部分模拟的用途。

部分模拟

id aMock = [OCMockObjectpartialMockForObject:anObject]

创建一个模拟对象,其使用方式与 anObject 相同。当调用未存根的方法时,它将被转发到一个对象。当使用对 anObject 的引用而不是模拟来调用存根方法时,它仍将由模拟处理。

请注意,当前无法为免费桥接类的实例(例如 NSString)创建部分模拟。

请参阅http://www.mulle-kybernetik.com/software/OCMock/

Yes, that's what partial mocks are for.

Partial mocks

id aMock = [OCMockObject partialMockForObject:anObject]

Creates a mock object that can be used in the same way as anObject. When a method that is not stubbed is invoked it will be forwarded to anObject. When a stubbed method is invoked using a reference to anObject, rather than the mock, it will still be handled by the mock.

Note that currently partial mocks cannot be created for instances of toll-free bridged classes, e.g. NSString.

See http://www.mulle-kybernetik.com/software/OCMock/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文