crud-kit/Tests/CrudAPITests/XCTestManifests.swift

14 lines
319 B
Swift

import XCTest
#if !canImport(ObjectiveC)
public func allTests() -> [XCTestCaseEntry] {
return [
testCase(RoutingTests.allTests),
testCase(IndexAllTests.allTests),
testCase(IndexTests.allTests),
testCase(CreateTests.allTests),
testCase(ReplaceTests.allTests),
]
}
#endif