Skip to content

Commit 7d03292

Browse files
committed
[test] Regenerate linuxmain
1 parent a05070b commit 7d03292

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

Tests/LinuxMain.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import LanguageServerProtocolTests
66
import SKCoreTests
77
import SKSupportTests
88
import SKSwiftPMWorkspaceTests
9+
import SourceKitDTests
910
import SourceKitTests
1011

1112
var tests = [XCTestCaseEntry]()
@@ -15,6 +16,7 @@ tests += LanguageServerProtocolTests.__allTests()
1516
tests += SKCoreTests.__allTests()
1617
tests += SKSupportTests.__allTests()
1718
tests += SKSwiftPMWorkspaceTests.__allTests()
19+
tests += SourceKitDTests.__allTests()
1820
tests += SourceKitTests.__allTests()
1921

2022
XCTMain(tests)
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#if !canImport(ObjectiveC)
2+
import XCTest
3+
4+
extension SourceKitDRegistryTests {
5+
// DO NOT MODIFY: This is autogenerated, use:
6+
// `swift test --generate-linuxmain`
7+
// to regenerate.
8+
static let __allTests__SourceKitDRegistryTests = [
9+
("testAdd", testAdd),
10+
("testRemove", testRemove),
11+
("testRemoveResurrect", testRemoveResurrect),
12+
]
13+
}
14+
15+
extension SourceKitDTests {
16+
// DO NOT MODIFY: This is autogenerated, use:
17+
// `swift test --generate-linuxmain`
18+
// to regenerate.
19+
static let __allTests__SourceKitDTests = [
20+
("testMultipleNotificationHandlers", testMultipleNotificationHandlers),
21+
]
22+
}
23+
24+
public func __allTests() -> [XCTestCaseEntry] {
25+
return [
26+
testCase(SourceKitDRegistryTests.__allTests__SourceKitDRegistryTests),
27+
testCase(SourceKitDTests.__allTests__SourceKitDTests),
28+
]
29+
}
30+
#endif

0 commit comments

Comments
 (0)