merge with Arbitrary branch

This commit is contained in:
Mathew Polzin
2019-01-20 18:41:54 -08:00
3 changed files with 32 additions and 0 deletions
@@ -0,0 +1,15 @@
//
// PlaceholderTests.swift
// JSONAPIArbitraryTests
//
// Created by Mathew Polzin on 12/7/18.
//
import XCTest
import JSONAPIArbitrary
class PlaceholderTests: XCTestCase {
func test_Placeholder() {
}
}
@@ -0,0 +1,15 @@
import XCTest
extension PlaceholderTests {
static let __allTests = [
("test_Placeholder", test_Placeholder),
]
}
#if !os(macOS)
public func __allTests() -> [XCTestCaseEntry] {
return [
testCase(PlaceholderTests.__allTests),
]
}
#endif
+2
View File
@@ -3,10 +3,12 @@ import XCTest
import JSONAPITests
import JSONAPITestingTests
import JSONAPIOpenAPITests
import JSONAPIArbitraryTests
var tests = [XCTestCaseEntry]()
tests += JSONAPITests.__allTests()
tests += JSONAPITestingTests.__allTests()
tests += JSONAPIOpenAPITests.__allTests()
tests += JSONAPIArbitraryTests.__allTests()
XCTMain(tests)