Files
SwiftShell/Tests/LinuxMain.swift
T
2017-03-31 00:08:56 +02:00

26 lines
625 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(RunAndPrint_Tests.allTests),
testCase(MainContext_Tests.allTests),
testCase(CopiedCustomContext_Tests.allTests),
testCase(BlankCustomContext_Tests.allTests),
testCase(Stream_Tests.allTests),
]
XCTMain(tests)