17 lines
432 B
Swift
17 lines
432 B
Swift
import XCTest
|
|
|
|
#if os(Linux)
|
|
public func allTests() -> [XCTestCaseEntry] {
|
|
return [
|
|
testCase(DateTimeTests.allTests),
|
|
testCase(SchedulesTests.allTests),
|
|
testCase(TaskHubTests.allTests),
|
|
testCase(TaskTests.allTests),
|
|
testCase(AtomicTests.allTests),
|
|
testCase(BucketTests.allTests),
|
|
testCase(CalendarTests.allTests),
|
|
testCase(ExtensionsTests.allTests)
|
|
]
|
|
}
|
|
#endif
|