Files
SwiftShell/Tests/LinuxMain.swift
T
2018-04-09 04:40:49 +02:00

27 lines
669 B
Swift
Executable File

import XCTest
import GeneralTests
import SwiftShellTests
import StreamTests
let tests: [XCTestCaseEntry] = [
testCase(Array_Tests.allTests),
testCase(LazySplitGenerator_Tests.allTests),
testCase(FileHandle_Tests.allTests),
testCase(String_Tests.allTests),
testCase(UrlAppendationOperator.allTests),
testCase(Open.allTests),
testCase(Run_Tests.allTests),
testCase(RunAsync_Tests.allTests),
testCase(RunAsyncAndPrint_Tests.allTests),
testCase(RunAndPrint_Tests.allTests),
testCase(MainContext_Tests.allTests),
testCase(CopiedCustomContext_Tests.allTests),
testCase(BlankCustomContext_Tests.allTests),
testCase(Stream_Tests.allTests),
]
XCTMain(tests)