Update linuxmain

This commit is contained in:
Mathew Polzin
2018-11-27 13:34:22 -08:00
parent aedd5dc29b
commit 7d7b3d7f19
+26
View File
@@ -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),
]
}