Test,它显示“Build Succeeded”并且应用程序弹出一瞬间,但随后提示我这条消息: 我进行了很多搜索,但找不到适用于-6ren">
gpt4 book ai didi

iOS 测试失败 - "No Implementation for…"

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:02:41 27 4
gpt4 key购买 nike

完成我的应用程序后,我从 Xcode 运行测试,Product -> Test,它显示“Build Succeeded”并且应用程序弹出一瞬间,但随后提示我这条消息:

enter image description here

我进行了很多搜索,但找不到适用于这种情况的任何解决方案。我想提一下,我也尝试过将应用程序的名称从 CSQTCConference 更改为 CSQTC Conference,但不确定这是否相关。

我打算今天将我的应用程序发布到应用程序商店,但这个问题阻碍了它。如果您能提出任何解决此问题的建议,将会很有帮助。

最佳答案

我只是评论下面一行:

//XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__);

在:

#import <XCTest/XCTest.h>

@interface KinderAppTests : XCTestCase

@end

@implementation KinderAppTests

- (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
{
//XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__);
}

@end

此解决方案对我有用,希望对您有所帮助:)

关于iOS 测试失败 - "No Implementation for…",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19852290/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com