我怎样才能让 OCMock 让我在 UIKit 类上存根一个类别方法?

发布于 2024-07-27 01:46:04 字数 540 浏览 5 评论 0原文

我试图在我的应用程序的测试中模拟 UITabBarController 。 我在另一个文件的其他地方定义了该类的类别方法,该方法与我的测试类中的 ocmock 一起导入。 我想要做的是这样的:

- (void) setUp
{
    id mockTabController = [OCMockObject mockForClass:[UITabBarController class]];
    [[[mockTabController stub] andReturn:nil] displayedViewController]; 
    // displayedViewController is the category method
}

但是当我这样做并且测试到达该存根调用时,我收到一条错误消息:

[NSProxy doesNotRecognizeSelector:displayedViewController] called!

我需要做一些特定的事情来允许 ocmock 识别内置框架类上的类别方法吗?

I'm trying to mock a UITabBarController in my app's tests. I have a category method on that class defined elsewhere in another file that gets imported along with ocmock in my test class. what i'm trying to so is this:

- (void) setUp
{
    id mockTabController = [OCMockObject mockForClass:[UITabBarController class]];
    [[[mockTabController stub] andReturn:nil] displayedViewController]; 
    // displayedViewController is the category method
}

but when i do and the test gets to that stub call, i get an error saying:

[NSProxy doesNotRecognizeSelector:displayedViewController] called!

Is there something specific i need to do to allow ocmock to recognize category methods on built in framework classes?

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

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

发布评论

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

评论(1

叹梦 2024-08-03 01:46:04

我解决了这个问题; 其中定义的类类别的文件不在我的项目中的正确目标中。 它在主要目标中,但不在单元测试目标中。 将其添加到正确的位置使其工作顺利。

I figured out the problem; the file that had the class category defined in it wasn't in the correct target in my project. It was in the main target but not the unit test target. adding it to the right place made it work swimmingly.

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