XCTests过早取消

时间:2018-12-06 01:30:58

标签: ios swift xcode unit-testing xctest

我正在XCTests中的Xcode中运行一些单元测试。当我运行它们时,所有测试要么通过要么失败,并显示绿色的小勾号或红色的叉号。 主要问题似乎是我的测试过早取消并且无法正常运行。

以下是更多信息:

  1. 运行测试时,没有任何控制台输出,以前从未发生过。就是说,我以前确实有预期的控制台输出,但现在没有。
  2. 运行测试时,不需要我解锁iPhone即可运行该应用程序。而且,即使我的iPhone已解锁,它也不会运行以前要运行的应用程序。
  3. 在运行测试时,它会完成编译,然后很快在Xcode的信息栏中(顶部和中间的栏显示警告,并在构建项目时显示“正在构建”)说“正在取消...”)

  4. 我正在使用.xcworkspace文件(因为我正在使用Pods)

  5. 我有一个构建方案即项目。
  6. 我遇到了同样的问题,还有绿色检查和红色叉号在运行后没有显示在我的测试中,有时我的测试在“测试”选项卡中根本没有显示的问题。通过删除Podfile.lock文件,Pods目录和.xcworkspace目录,然后运行Pod安装,我解决了这些问题。完成此操作后,除了这两个问题外,我遇到了相同的问题。
  7. 我尝试在相同的问题的不同分支上运行新测试。
  8. 在遇到任何这些问题之前,我只是在编写测​​试并尝试使用不同的编写测试方法。我已还原所有这些更改,但仍然出现这些错误。

  9. 在没有模拟器的情况下运行测试时,我也发现了相同的问题。

  10. 当我从Xcode编译并运行应用程序时,它运行正常。

关于如何解决此问题的任何建议都将非常有用!如果需要,请询问更多详细信息。

这是我进行测试的视频。我建立了一个新项目和一个新的单元测试目标,以显示正在发生的事情。 注意:那里有一个空测试,一个测试应始终通过:

enter image description here

如您所见,问题在于测试无法正常运行。绿色和红色的十字不再显示,应该始终通过的测试失败,没有控制台输出,并且在顶部信息栏中几乎立即说“正在取消...”。 关于取消原因为何的任何建议都很好!

以下是代码设置的屏幕截图:

enter image description here enter image description here

这也是代码(创建新的单元测试之后,这只是基本代码,除了我添加了一个始终应该通过的断言):

import XCTest
@testable import example

class exampleTests: XCTestCase {

    override func setUp() {
        // Put setup code here. This method is called before the invocation of each test method in the class.
    }

    override func tearDown() {
        // Put teardown code here. This method is called after the invocation of each test method in the class.
    }

    func testExample() {
        // This is an example of a functional test case.
        // Use XCTAssert and related functions to verify your tests produce the correct results.
        XCTAssertTrue(true)
    }

    func testPerformanceExample() {
        // This is an example of a performance test case.
        self.measure {
            // Put the code you want to measure the time of here.
        }
    }
}

编辑:

因此,按照@CPR的建议,我在模拟器上再次尝试了该操作,并且错误基本上消失了。我在物理设备上再次尝试,但错误仍然存​​在注意:我之前在模拟器上尝试过,并遇到了相同的错误。从那时起,我什么都没做,所以我不确定为什么现在可以工作。这是在sim卡上运行测试的控制台输出(不确定是否会有所帮助,但我还是会添加它):

Test Suite 'All tests' started at 2018-12-06 03:59:53.045
Test Suite 'exampleTests.xctest' started at 2018-12-06 03:59:53.046
Test Suite 'exampleTests' started at 2018-12-06 03:59:53.046
Test Case '-[exampleTests.exampleTests testExample]' started.
Test Case '-[exampleTests.exampleTests testExample]' passed (0.001 seconds).
Test Case '-[exampleTests.exampleTests testPerformanceExample]' started.
/Users/akashkundu/Documents/example/exampleTests/exampleTests.swift:30: Test Case '-[exampleTests.exampleTests testPerformanceExample]' measured [Time, seconds] average: 0.000, relative standard deviation: 115.251%, values: [0.000004, 0.000001, 0.000001, 0.000001, 0.000001, 0.000001, 0.000001, 0.000001, 0.000001, 0.000001], performanceMetricID:com.apple.XCTPerformanceMetric_WallClockTime, baselineName: "", baselineAverage: , maxPercentRegression: 10.000%, maxPercentRelativeStandardDeviation: 10.000%, maxRegression: 0.100, maxStandardDeviation: 0.100
Test Case '-[exampleTests.exampleTests testPerformanceExample]' passed (0.348 seconds).
Test Suite 'exampleTests' passed at 2018-12-06 03:59:53.396.
     Executed 2 tests, with 0 failures (0 unexpected) in 0.348 (0.350) seconds
Test Suite 'exampleTests.xctest' passed at 2018-12-06 03:59:53.396.
     Executed 2 tests, with 0 failures (0 unexpected) in 0.348 (0.350) seconds
Test Suite 'All tests' passed at 2018-12-06 03:59:53.397.
     Executed 2 tests, with 0 failures (0 unexpected) in 0.348 (0.351) seconds 

谁能阐明为什么在物理设备上运行测试会导致这些错误?

编辑:

以下是@CPR在Xcode中“消息”标签中的错误/日志消息:

enter image description here

这是文本中的错误/日志代码:

example.app encountered an error (Failed to establish communication with the test runner. (Underlying error: Unable to connect to test manager on 8b441d96d063b3b6abf55b06115441d160e85e67. (Underlying error: kAMDMuxConnectError: Could not connect to the device.)))

--------------------------------------------------- ------------------------

解决方案:

感谢@CPR,解决方案是只需重新启动设备。吸取的另一个教训是使用“消息”标签查看日志和错误,该错误是“断点”标签旁边最右边的标签。

他的完整答案here

1 个答案:

答案 0 :(得分:2)

问题已在注释中解决。对于将来的读者,如果遇到类似问题,可以通过以下几方面的好检查:

  1. 检查“ Xcode消息”选项卡以查找构建错误。
  2. 重新启动设备/模拟器。 在这种情况下,此问题已解决。
  3. 在设备/模拟器上卸载/重新安装应用程序。
  4. 证书/配置文件有效吗?尝试生成新的并重新运行。
  5. 它可以在模拟器上运行吗?如果是,则可能是设备本身存在问题。
  6. 运行代码时是否遇到断点?如果是,则这是测试失败。如果没有,那么问题甚至在测试运行之前就已经发生了(就像这里的情况一样)。