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