From 744e08acf4aabc803db849ba055fe8feb597e65a Mon Sep 17 00:00:00 2001 From: Mathew Polzin Date: Mon, 21 Jan 2019 23:00:13 -0800 Subject: [PATCH] Update linuxmain --- Tests/JSONAPIOpenAPITests/XCTestManifests.swift | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Tests/JSONAPIOpenAPITests/XCTestManifests.swift b/Tests/JSONAPIOpenAPITests/XCTestManifests.swift index a2dcf48..8f7c32b 100644 --- a/Tests/JSONAPIOpenAPITests/XCTestManifests.swift +++ b/Tests/JSONAPIOpenAPITests/XCTestManifests.swift @@ -30,6 +30,12 @@ extension JSONAPIAttributeOpenAPITests { ] } +extension JSONAPIDocumentOpenAPITests { + static let __allTests = [ + ("test_SingleResourceDocument", test_SingleResourceDocument), + ] +} + extension JSONAPIEntityOpenAPITests { static let __allTests = [ ("test_AttributesAndRelationshipsEntity", test_AttributesAndRelationshipsEntity), @@ -54,6 +60,7 @@ extension JSONAPIRelationshipsOpenAPITests { public func __allTests() -> [XCTestCaseEntry] { return [ testCase(JSONAPIAttributeOpenAPITests.__allTests), + testCase(JSONAPIDocumentOpenAPITests.__allTests), testCase(JSONAPIEntityOpenAPITests.__allTests), testCase(JSONAPIRelationshipsOpenAPITests.__allTests), ]