我正在XCTests中的Xcode中运行一些单元测试。当我运行它们时,所有测试要么通过要么失败,并显示绿色的小勾号或红色的叉号。 主要问题似乎是我的测试过早取消并且无法正常运行。
以下是更多信息:
在运行测试时,它会完成编译,然后很快在Xcode的信息栏中(顶部和中间的栏显示警告,并在构建项目时显示“正在构建”)说“正在取消...”)
我正在使用.xcworkspace文件(因为我正在使用Pods)
在遇到任何这些问题之前,我只是在编写测试并尝试使用不同的编写测试方法。我已还原所有这些更改,但仍然出现这些错误。
在没有模拟器的情况下运行测试时,我也发现了相同的问题。
当我从Xcode编译并运行应用程序时,它运行正常。
关于如何解决此问题的任何建议都将非常有用!如果需要,请询问更多详细信息。
这是我进行测试的视频。我建立了一个新项目和一个新的单元测试目标,以显示正在发生的事情。 注意:那里有一个空测试,一个测试应始终通过:
如您所见,问题在于测试无法正常运行。绿色和红色的十字不再显示,应该始终通过的测试失败,没有控制台输出,并且在顶部信息栏中几乎立即说“正在取消...”。 关于取消原因为何的任何建议都很好!
以下是代码设置的屏幕截图:
这也是代码(创建新的单元测试之后,这只是基本代码,除了我添加了一个始终应该通过的断言):
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中“消息”标签中的错误/日志消息:
这是文本中的错误/日志代码:
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。
答案 0 :(得分:2)
问题已在注释中解决。对于将来的读者,如果遇到类似问题,可以通过以下几方面的好检查: