mirror of
https://github.com/apple/sourcekit-lsp.git
synced 2026-03-02 18:23:24 +01:00
19 lines
496 B
Swift
19 lines
496 B
Swift
import XCTest
|
|
|
|
import LanguageServerProtocolJSONRPCTests
|
|
import LanguageServerProtocolTests
|
|
import SKCoreTests
|
|
import SKSupportTests
|
|
import SKSwiftPMWorkspaceTests
|
|
import SourceKitTests
|
|
|
|
var tests = [XCTestCaseEntry]()
|
|
tests += LanguageServerProtocolJSONRPCTests.__allTests()
|
|
tests += LanguageServerProtocolTests.__allTests()
|
|
tests += SKCoreTests.__allTests()
|
|
tests += SKSupportTests.__allTests()
|
|
tests += SKSwiftPMWorkspaceTests.__allTests()
|
|
tests += SourceKitTests.__allTests()
|
|
|
|
XCTMain(tests)
|