mirror of
https://github.com/apple/sourcekit-lsp.git
synced 2026-03-02 18:23:24 +01:00
Ideally we can someday migrate this to something more standard such as swift-log, and make it explicit how to control logging for the JSONRPC module.
21 lines
557 B
Swift
21 lines
557 B
Swift
import XCTest
|
|
|
|
import LSPLoggingTests
|
|
import LanguageServerProtocolJSONRPCTests
|
|
import LanguageServerProtocolTests
|
|
import SKCoreTests
|
|
import SKSupportTests
|
|
import SKSwiftPMWorkspaceTests
|
|
import SourceKitTests
|
|
|
|
var tests = [XCTestCaseEntry]()
|
|
tests += LSPLoggingTests.__allTests()
|
|
tests += LanguageServerProtocolJSONRPCTests.__allTests()
|
|
tests += LanguageServerProtocolTests.__allTests()
|
|
tests += SKCoreTests.__allTests()
|
|
tests += SKSupportTests.__allTests()
|
|
tests += SKSwiftPMWorkspaceTests.__allTests()
|
|
tests += SourceKitTests.__allTests()
|
|
|
|
XCTMain(tests)
|