From 7d7b3d7f1948528d6e16d50e89857ee893b35a40 Mon Sep 17 00:00:00 2001 From: Mathew Polzin Date: Tue, 27 Nov 2018 13:34:22 -0800 Subject: [PATCH] Update linuxmain --- Tests/JSONAPITests/XCTestManifests.swift | 26 ++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/Tests/JSONAPITests/XCTestManifests.swift b/Tests/JSONAPITests/XCTestManifests.swift index 4638f44..06ddbfa 100644 --- a/Tests/JSONAPITests/XCTestManifests.swift +++ b/Tests/JSONAPITests/XCTestManifests.swift @@ -67,6 +67,16 @@ extension DocumentTests { ] } +extension EntityCheckTests { + static let __allTests = [ + ("test_failsWithBadAttribute", test_failsWithBadAttribute), + ("test_FailsWithBadId", test_FailsWithBadId), + ("test_failsWithBadRelationship", test_failsWithBadRelationship), + ("test_failsWithEnumAttributes", test_failsWithEnumAttributes), + ("test_failsWithEnumRelationships", test_failsWithEnumRelationships), + ] +} + extension EntityTests { static let __allTests = [ ("test_entityAllAttribute", test_entityAllAttribute), @@ -112,6 +122,13 @@ extension EntityTests { ] } +extension Id_LiteralTests { + static let __allTests = [ + ("test_IntegerLiteral", test_IntegerLiteral), + ("test_StringLiteral", test_StringLiteral), + ] +} + extension IncludedTests { static let __allTests = [ ("test_FiveDifferentIncludes", test_FiveDifferentIncludes), @@ -185,6 +202,12 @@ extension RelationshipTests { ] } +extension Relationship_LiteralTests { + static let __allTests = [ + ("test_NilLiteral", test_NilLiteral), + ] +} + extension ResourceBodyTests { static let __allTests = [ ("test_manyResourceBody", test_manyResourceBody), @@ -202,11 +225,14 @@ public func __allTests() -> [XCTestCaseEntry] { testCase(AttributeTests.__allTests), testCase(Attribute_LiteralTests.__allTests), testCase(DocumentTests.__allTests), + testCase(EntityCheckTests.__allTests), testCase(EntityTests.__allTests), + testCase(Id_LiteralTests.__allTests), testCase(IncludedTests.__allTests), testCase(LinksTests.__allTests), testCase(PolyTests.__allTests), testCase(RelationshipTests.__allTests), + testCase(Relationship_LiteralTests.__allTests), testCase(ResourceBodyTests.__allTests), ] }