我試圖添加一個測試目標到我的項目,但是當我運行測試它似乎是實際的測試沒有被執行,而是Xcode總是報告成功,但是指示測試是否通過的小方格仍然清晰。Xcode 7測試不運行,但報告成功
我只有一個測試目標和一個類:
@implementation Tests
- (void)setUp {
[super setUp];
// Put setup code here. This method is called before the invocation of each test method in the class.
}
- (void)tearDown {
// Put teardown code here. This method is called after the invocation of each test method in the class.
[super tearDown];
}
- (void)testExample {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct results.
XCTAssert(false, "");
}
- (void)testPerformanceExample {
XCTAssert(false, "");
}
@end
測試應該失敗,但它會顯示一個彈出說成功。此外,測試報告還說沒有測試。
如果我試圖單獨運行測試,測試「成功」,但我沒有得到關於報告的信息,並且方塊仍然爲空。
關於如何解決它的任何想法?
你設法解決這個問題?我得到同樣的問題 – Kesava
對不起。它帶走了XCode更新 – Emanuel