Cocoa TDD 和单例

发布于 2024-12-06 14:50:10 字数 398 浏览 0 评论 0原文

我正在使用 Cocoa 进行 TDD,我想问 - 测试单例类的正确方法是什么?我对初始化和检索部分很好奇。

我正在考虑做类似的事情:

MySingleton *singleton1 = [MySingleton sharedInstance];
MySingleton *singleton2 = [[MySingleton alloc] init];

STAssertEqualObjects(singleton1, singleton2, @"Objects were not equal: %@ and %@", singleton1, singleton2);

我还应该测试什么?我是否应该尝试在可能的竞争条件下测试行为(测试 @synchronize 语句)?

I'm doing TDD with Cocoa and I wanted to ask - what is the correct way of testing a singleton class? I'm curious about the initialization and retrieval part.

I'm thinking of doing something similar to this:

MySingleton *singleton1 = [MySingleton sharedInstance];
MySingleton *singleton2 = [[MySingleton alloc] init];

STAssertEqualObjects(singleton1, singleton2, @"Objects were not equal: %@ and %@", singleton1, singleton2);

Anything else I should test for? Should I even try to test the behavior under possible race conditions (test the @synchronize statement)?

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

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

发布评论

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

评论(1

若水般的淡然安静女子 2024-12-13 14:50:10

如果您的单例没有可写状态,那么您根本不必担心这一点。

如果您的单例具有可写状态,那么它可能根本不应该是单例。

If your singleton has no writable state, then you don't have to worry about this at all.

If your singleton has writable state, then it probably shouldn't be a singleton at all.

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