为什么我的测试失败并且true == true

时间:2015-11-16 18:19:16

标签: xctest

我正在写一个XCTest

在我的测试中我有BOOL stam = true;

然后XCTest(stam == true,@"value is expected to be true");

然而,测试失败,我收到此错误消息

((value == true) is true) failed - value is expected to be true

1 个答案:

答案 0 :(得分:0)

您通常需要在测试框架中使用Assertion方法。

你试过吗

XCTAssertEqual(stam,true,@"value is expected to be true");