| /* |
| This source file is part of the Swift.org open source project |
| |
| Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors |
| Licensed under Apache License v2.0 with Runtime Library Exception |
| |
| See http://swift.org/LICENSE.txt for license information |
| See http://swift.org/CONTRIBUTORS.txt for Swift project authors |
| */ |
| |
| import XCTest |
| |
| #if !os(macOS) |
| public func allTests() -> [XCTestCaseEntry] { |
| return [ |
| testCase(AwaitTests.allTests), |
| testCase(ByteStringTests.allTests), |
| testCase(CollectionAlgorithmsTests.allTests), |
| testCase(CollectionExtensionsTests.allTests), |
| testCase(ConditionTests.allTests), |
| testCase(CStringArrayTests.allTests), |
| testCase(DeltaAlgorithmTests.allTests), |
| testCase(DiagnosticsEngineTests.allTests), |
| testCase(DictionaryExtensionTests.allTests), |
| testCase(DictionaryLiteralExtensionsTests.allTests), |
| testCase(FileAccessTests.allTests), |
| testCase(FileSystemTests.allTests), |
| testCase(GraphAlgorithmsTests.allTests), |
| testCase(JSONTests.allTests), |
| testCase(JSONMapperTests.allTests), |
| testCase(KeyedPairTests.allTests), |
| testCase(LazyCacheTests.allTests), |
| testCase(LockTests.allTests), |
| testCase(miscTests.allTests), |
| testCase(ObjectIdentifierProtocolTests.allTests), |
| testCase(OrderedSetTests.allTests), |
| testCase(OutputByteStreamTests.allTests), |
| testCase(POSIXTests.allTests), |
| testCase(PathShimTests.allTests), |
| testCase(PathTests.allTests), |
| testCase(ProcessTests.allTests), |
| testCase(ProcessSetTests.allTests), |
| testCase(RegExTests.allTests), |
| testCase(ResultTests.allTests), |
| testCase(SortedArrayTests.allTests), |
| testCase(StringConversionTests.allTests), |
| testCase(SHA256Tests.allTests), |
| testCase(SyncronizedQueueTests.allTests), |
| testCase(TemporaryFileTests.allTests), |
| testCase(TerminalControllerTests.allTests), |
| testCase(ThreadTests.allTests), |
| testCase(TupleTests.allTests), |
| testCase(WalkTests.allTests), |
| ] |
| } |
| #endif |