Skip to content

Commit

Permalink
Regenerated LinuxMain.swift using sourcery
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Remmel authored and Daniel.Metzing committed Aug 14, 2018
1 parent dfa1665 commit fba3a1b
Showing 1 changed file with 11 additions and 20 deletions.
31 changes: 11 additions & 20 deletions Tests/LinuxMain.swift
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,10 @@ extension FileNameRuleTests {
("testExtensionNameDoesntTrigger", testExtensionNameDoesntTrigger),
("testMisspelledNameDoesTrigger", testMisspelledNameDoesTrigger),
("testMisspelledNameDoesntTriggerWithOverride", testMisspelledNameDoesntTriggerWithOverride),
("testMainDoesTriggerWithoutOverride", testMainDoesTriggerWithoutOverride)
("testMainDoesTriggerWithoutOverride", testMainDoesTriggerWithoutOverride),
("testCustomSuffixPattern", testCustomSuffixPattern),
("testCustomPrefixPattern", testCustomPrefixPattern),
("testCustomPrefixAndSuffixPatterns", testCustomPrefixAndSuffixPatterns)
]
}

Expand Down Expand Up @@ -616,6 +619,12 @@ extension LiteralExpressionEndIdentationRuleTests {
]
}

extension LowerACLThanParentRuleTests {
static var allTests: [(String, (LowerACLThanParentRuleTests) -> () throws -> Void)] = [
("testWithDefaultConfiguration", testWithDefaultConfiguration)
]
}

extension MissingDocsRuleConfigurationTests {
static var allTests: [(String, (MissingDocsRuleConfigurationTests) -> () throws -> Void)] = [
("testDescriptionEmpty", testDescriptionEmpty),
Expand All @@ -631,12 +640,6 @@ extension MissingDocsRuleConfigurationTests {
]
}

extension LowerACLThanParentRuleTests {
static var allTests: [(String, (LowerACLThanParentRuleTests) -> () throws -> Void)] = [
("testWithDefaultConfiguration", testWithDefaultConfiguration)
]
}

extension ModifierOrderTests {
static var allTests: [(String, (ModifierOrderTests) -> () throws -> Void)] = [
("testAttributeTypeMethod", testAttributeTypeMethod),
Expand Down Expand Up @@ -983,18 +986,6 @@ extension RulesTests {
("testPrefixedTopLevelConstant", testPrefixedTopLevelConstant),
("testPrivateAction", testPrivateAction),
("testPrivateOutlet", testPrivateOutlet),
("testPrivateUnitTest", testPrivateUnitTest),
("testProhibitedSuper", testProhibitedSuper),
("testProtocolPropertyAccessorsOrder", testProtocolPropertyAccessorsOrder),
("testQuickDiscouragedCall", testQuickDiscouragedCall),
("testQuickDiscouragedFocusedTest", testQuickDiscouragedFocusedTest),
("testQuickDiscouragedPendingTest", testQuickDiscouragedPendingTest),
("testRedundantDiscardableLet", testRedundantDiscardableLet),
("testRedundantNilCoalescing", testRedundantNilCoalescing),
("testRedundantOptionalInitialization", testRedundantOptionalInitialization),
("testRedundantSetAccessControl", testRedundantSetAccessControl),
("testRedundantStringEnumValue", testRedundantStringEnumValue),
("testRedundantVoidReturn", testRedundantVoidReturn),
("testRequiredEnumCase", testRequiredEnumCase),
("testTrailingNewline", testTrailingNewline)
]
Expand Down Expand Up @@ -1304,9 +1295,9 @@ XCTMain([
testCase(LineLengthConfigurationTests.allTests),
testCase(LineLengthRuleTests.allTests),
testCase(LinterCacheTests.allTests),
testCase(MissingDocsRuleConfigurationTests.allTests),
testCase(LiteralExpressionEndIdentationRuleTests.allTests),
testCase(LowerACLThanParentRuleTests.allTests),
testCase(MissingDocsRuleConfigurationTests.allTests),
testCase(ModifierOrderTests.allTests),
testCase(MultilineArgumentsRuleTests.allTests),
testCase(MultilineFunctionChainsRuleTests.allTests),
Expand Down

0 comments on commit fba3a1b

Please sign in to comment.