Add CreateTests

This commit is contained in:
Simon Edelmann 2020-02-21 14:37:48 +01:00
parent c69cf6cf74
commit 00e57d659e
3 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,9 @@
@testable import CrudAPI
import XCTVapor
final class CreateTests: ApplicationXCTestCase {
static var allTests = [
]
}

View File

@ -6,6 +6,7 @@ public func allTests() -> [XCTestCaseEntry] {
testCase(RoutingTests.allTests),
testCase(IndexAllTests.allTests),
testCase(IndexTests.allTests),
testCase(CreateTests.allTests),
]
}
#endif

View File

@ -6,4 +6,5 @@ var tests = [XCTestCaseEntry]()
tests += RoutingTests.allTests()
tests += IndexAllTests.allTests()
tests += IndexTests.allTests()
tests += CreateTests.allTests()
XCTMain(tests)