2018-08-24 18:42:07 +02:00
|
|
|
/**
|
|
|
|
* Splash
|
|
|
|
* Copyright (c) John Sundell 2018
|
|
|
|
* MIT license - see LICENSE.md
|
|
|
|
*/
|
|
|
|
|
|
|
|
import XCTest
|
|
|
|
|
2019-06-09 11:56:10 +02:00
|
|
|
#if os(Linux)
|
2018-08-24 18:42:07 +02:00
|
|
|
|
|
|
|
public func makeLinuxTests() -> [XCTestCaseEntry] {
|
|
|
|
return [
|
|
|
|
testCase(ClosureTests.allTests),
|
|
|
|
testCase(CommentTests.allTests),
|
|
|
|
testCase(DeclarationTests.allTests),
|
|
|
|
testCase(EnumTests.allTests),
|
|
|
|
testCase(FunctionCallTests.allTests),
|
|
|
|
testCase(LiteralTests.allTests),
|
|
|
|
testCase(OptionalTests.allTests),
|
|
|
|
testCase(PreprocessorTests.allTests),
|
2019-03-15 20:24:53 +01:00
|
|
|
testCase(StatementTests.allTests),
|
|
|
|
testCase(MarkdownTests.allTests)
|
2018-08-24 18:42:07 +02:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|