splash/Tests/SplashTests/Core/XCTestManifests.swift

26 lines
583 B
Swift
Raw Normal View History

2018-08-24 18:42:07 +02:00
/**
* Splash
* Copyright (c) John Sundell 2018
* MIT license - see LICENSE.md
*/
import XCTest
#if !os(macOS)
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),
testCase(StatementTests.allTests)
]
}
#endif