Files
SwiftShell/Tests/LinuxMain.swift
T
Kare Morstol fa70e419dd Enable building for iOS. Just the Stream part. So FileSmith can use it.
The rest cannot build on iOS because it uses Process.
Move the Stream files into its own directory.
2017-02-28 01:45:24 +01:00

26 lines
623 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(CopiedShellContext_Tests.allTests),
testCase(BlankShellContext_Tests.allTests),
testCase(Stream_Tests.allTests),
]
XCTMain(tests)