如何使用 STAssertTrue 访问对象的属性

发布于 2024-12-06 12:20:15 字数 69 浏览 0 评论 0原文

如何在单元测试中使用 STAssertTrue 访问对象的属性?

我无权访问我的对象的属性,但我想进行比较?

How do I access the properties of my object using STAssertTrue in unit tests?

I don't have access to the properties of my object and I want to do a comparison?

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

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

发布评论

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

评论(1

埖埖迣鎅 2024-12-13 12:20:15

您可以像往常一样访问对象属性,所以我猜您正在谈论缺少代码完成...我认为这是一个 xcode bug,如果您想要代码完成,您必须在调用 STAssertTrue() (或任何其他 OCUnit)之前键入宏),例如:

NSString *foo = [myObject fooString];
STAssertTrue([foo length] > 1, nil);

You can access object properties as usual, so I guess you are talking about missing code completion... I think is an xcode bug, if you want code completion, you have to type before a call to STAssertTrue() (or any others OCUnit macro), like:

NSString *foo = [myObject fooString];
STAssertTrue([foo length] > 1, nil);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文