diff --git a/Tests/JSONAPIArbitraryTests/PlaceholderTests.swift b/Tests/JSONAPIArbitraryTests/PlaceholderTests.swift new file mode 100644 index 0000000..61ceaa0 --- /dev/null +++ b/Tests/JSONAPIArbitraryTests/PlaceholderTests.swift @@ -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() { + + } +} diff --git a/Tests/JSONAPIArbitraryTests/XCTestManifests.swift b/Tests/JSONAPIArbitraryTests/XCTestManifests.swift new file mode 100644 index 0000000..acb4b36 --- /dev/null +++ b/Tests/JSONAPIArbitraryTests/XCTestManifests.swift @@ -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 diff --git a/Tests/LinuxMain.swift b/Tests/LinuxMain.swift index 5741ebc..791d328 100644 --- a/Tests/LinuxMain.swift +++ b/Tests/LinuxMain.swift @@ -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)