workspace/tests
returns unnecessarily disambiguated test items
#2015
Labels
workspace/tests
returns unnecessarily disambiguated test items
#2015
Swift version
swift-driver version: 1.120.4 Apple Swift version 6.1 (swiftlang-6.1.0.108.3 clang-1700.0.11.1
Platform
macOS
Editor
Visual Studio Code
Description
When you have more than one XCTest test in an extension of an XCTestCase, the
workspace/tests
request will incorrectly return XCTests with the filename and line appended to the end of the ID for all tests in the extension. This only happens with background indexing enabled.This disambiguation is really only supposed to be for swift-testing tests that share the same ID signature (i.e.
@Test foo(_ x:Int)
and@Test foo(_ x:String)
, which both have an id offoo(_:)
).Steps to Reproduce
Add the following test to WorkspaceTestDiscoveryTests.swift and run it:
This produces a TestItem with two children that have IDs
MyLibraryTests.MyTests/testOne():MyTests.swift:4:4
MyLibraryTests.MyTests/testOneTwo():MyTests.swift:5:4
Expected:
MyLibraryTests.MyTests/testOne()
MyLibraryTests.MyTests/testOneTwo()
Logging
No response
The text was updated successfully, but these errors were encountered: