Files
sourcekit-lsp/Tests/LinuxMain.swift
Ben Langmuir 4ff14d278d Rename module SourceKit -> SourceKitLSP
Clarify its role, since it is not really an LSP-independent interface
right now.
2020-06-04 14:49:00 -07:00

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)