我正在写一个XCTest
在我的测试中我有BOOL stam = true;
然后XCTest(stam == true,@"value is expected to be true");
然而,测试失败,我收到此错误消息
((value == true) is true) failed - value is expected to be true
答案 0 :(得分:0)
您通常需要在测试框架中使用Assertion方法。
你试过吗
XCTAssertEqual(stam,true,@"value is expected to be true");