Skip to content

Commit

Permalink
Remove now deleted test from linuxmain
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpolzin committed Nov 29, 2018
1 parent 163ac94 commit 6aeb859
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Tests/JSONAPITests/XCTestManifests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand All @@ -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),
Expand Down Expand Up @@ -204,6 +221,7 @@ extension RelationshipTests {

extension Relationship_LiteralTests {
static let __allTests = [
("test_ArrayLiteral", test_ArrayLiteral),
("test_NilLiteral", test_NilLiteral),
]
}
Expand All @@ -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),
Expand Down

0 comments on commit 6aeb859

Please sign in to comment.