Skip to content

Commit 7d7b3d7

Browse files
committed
Update linuxmain
1 parent aedd5dc commit 7d7b3d7

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

Tests/JSONAPITests/XCTestManifests.swift

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,16 @@ extension DocumentTests {
6767
]
6868
}
6969

70+
extension EntityCheckTests {
71+
static let __allTests = [
72+
("test_failsWithBadAttribute", test_failsWithBadAttribute),
73+
("test_FailsWithBadId", test_FailsWithBadId),
74+
("test_failsWithBadRelationship", test_failsWithBadRelationship),
75+
("test_failsWithEnumAttributes", test_failsWithEnumAttributes),
76+
("test_failsWithEnumRelationships", test_failsWithEnumRelationships),
77+
]
78+
}
79+
7080
extension EntityTests {
7181
static let __allTests = [
7282
("test_entityAllAttribute", test_entityAllAttribute),
@@ -112,6 +122,13 @@ extension EntityTests {
112122
]
113123
}
114124

125+
extension Id_LiteralTests {
126+
static let __allTests = [
127+
("test_IntegerLiteral", test_IntegerLiteral),
128+
("test_StringLiteral", test_StringLiteral),
129+
]
130+
}
131+
115132
extension IncludedTests {
116133
static let __allTests = [
117134
("test_FiveDifferentIncludes", test_FiveDifferentIncludes),
@@ -185,6 +202,12 @@ extension RelationshipTests {
185202
]
186203
}
187204

205+
extension Relationship_LiteralTests {
206+
static let __allTests = [
207+
("test_NilLiteral", test_NilLiteral),
208+
]
209+
}
210+
188211
extension ResourceBodyTests {
189212
static let __allTests = [
190213
("test_manyResourceBody", test_manyResourceBody),
@@ -202,11 +225,14 @@ public func __allTests() -> [XCTestCaseEntry] {
202225
testCase(AttributeTests.__allTests),
203226
testCase(Attribute_LiteralTests.__allTests),
204227
testCase(DocumentTests.__allTests),
228+
testCase(EntityCheckTests.__allTests),
205229
testCase(EntityTests.__allTests),
230+
testCase(Id_LiteralTests.__allTests),
206231
testCase(IncludedTests.__allTests),
207232
testCase(LinksTests.__allTests),
208233
testCase(PolyTests.__allTests),
209234
testCase(RelationshipTests.__allTests),
235+
testCase(Relationship_LiteralTests.__allTests),
210236
testCase(ResourceBodyTests.__allTests),
211237
]
212238
}

0 commit comments

Comments
 (0)