From 6aeb859c241e4f2c8b852a4b00f27c366594244b Mon Sep 17 00:00:00 2001 From: Mathew Polzin Date: Wed, 28 Nov 2018 21:13:47 -0800 Subject: [PATCH] Remove now deleted test from linuxmain --- Tests/JSONAPITests/XCTestManifests.swift | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/Tests/JSONAPITests/XCTestManifests.swift b/Tests/JSONAPITests/XCTestManifests.swift index cb17f39..8e87b21 100644 --- a/Tests/JSONAPITests/XCTestManifests.swift +++ b/Tests/JSONAPITests/XCTestManifests.swift @@ -7,6 +7,14 @@ extension AttributeTests { ] } +extension Attribute_FunctorTests { + static let __allTests = [ + ("test_mapGuaranteed", test_mapGuaranteed), + ("test_mapOptionalFailure", test_mapOptionalFailure), + ("test_mapOptionalSuccess", test_mapOptionalSuccess), + ] +} + extension Attribute_LiteralTests { static let __allTests = [ ("test_ArrayLiteral", test_ArrayLiteral), @@ -19,6 +27,15 @@ extension Attribute_LiteralTests { ] } +extension ComputedPropertiesTests { + static let __allTests = [ + ("test_ComputedAttributeAccess", test_ComputedAttributeAccess), + ("test_ComputedRelationshipAccess", test_ComputedRelationshipAccess), + ("test_DecodeIgnoresComputed", test_DecodeIgnoresComputed), + ("test_EncodeIgnoresComputed", test_EncodeIgnoresComputed), + ] +} + extension DocumentTests { static let __allTests = [ ("test_errorDocumentNoMeta", test_errorDocumentNoMeta), @@ -204,6 +221,7 @@ extension RelationshipTests { extension Relationship_LiteralTests { static let __allTests = [ + ("test_ArrayLiteral", test_ArrayLiteral), ("test_NilLiteral", test_NilLiteral), ] } @@ -223,7 +241,9 @@ extension ResourceBodyTests { public func __allTests() -> [XCTestCaseEntry] { return [ testCase(AttributeTests.__allTests), + testCase(Attribute_FunctorTests.__allTests), testCase(Attribute_LiteralTests.__allTests), + testCase(ComputedPropertiesTests.__allTests), testCase(DocumentTests.__allTests), testCase(EntityCheckTests.__allTests), testCase(EntityTests.__allTests),