Files
SwiftShell/Tests/LinuxMain.swift
2016-10-15 00:06:05 +02:00

25 lines
604 B
Swift
Executable File

import XCTest
import GeneralTests
import SwiftShellTests
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(CopiedShellContext_Tests.allTests),
testCase(BlankShellContext_Tests.allTests),
testCase(Stream_Tests.allTests),
]
XCTMain(tests)