Add CreateTests
This commit is contained in:
parent
c69cf6cf74
commit
00e57d659e
|
@ -0,0 +1,9 @@
|
|||
@testable import CrudAPI
|
||||
import XCTVapor
|
||||
|
||||
final class CreateTests: ApplicationXCTestCase {
|
||||
|
||||
|
||||
static var allTests = [
|
||||
]
|
||||
}
|
|
@ -6,6 +6,7 @@ public func allTests() -> [XCTestCaseEntry] {
|
|||
testCase(RoutingTests.allTests),
|
||||
testCase(IndexAllTests.allTests),
|
||||
testCase(IndexTests.allTests),
|
||||
testCase(CreateTests.allTests),
|
||||
]
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -6,4 +6,5 @@ var tests = [XCTestCaseEntry]()
|
|||
tests += RoutingTests.allTests()
|
||||
tests += IndexAllTests.allTests()
|
||||
tests += IndexTests.allTests()
|
||||
tests += CreateTests.allTests()
|
||||
XCTMain(tests)
|
||||
|
|
Loading…
Reference in New Issue