File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import LanguageServerProtocolTests
6
6
import SKCoreTests
7
7
import SKSupportTests
8
8
import SKSwiftPMWorkspaceTests
9
+ import SourceKitDTests
9
10
import SourceKitTests
10
11
11
12
var tests = [ XCTestCaseEntry] ( )
@@ -15,6 +16,7 @@ tests += LanguageServerProtocolTests.__allTests()
15
16
tests += SKCoreTests . __allTests ( )
16
17
tests += SKSupportTests . __allTests ( )
17
18
tests += SKSwiftPMWorkspaceTests . __allTests ( )
19
+ tests += SourceKitDTests . __allTests ( )
18
20
tests += SourceKitTests . __allTests ( )
19
21
20
22
XCTMain ( tests)
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments