SwiftLint/Tests/ExtraRulesTests/ExtraRulesTests.swift

18 lines
453 B
Swift

@testable import SwiftLintFramework
import SwiftLintTestHelpers
import XCTest
final class ExtraRulesTests: XCTestCase {
func testWithDefaultConfiguration() {
for ruleType in extraRules() {
verifyRule(ruleType.description)
}
}
}
extension ExtraRulesTests {
static var allTests: [(String, (ExtraRulesTests) -> () throws -> Void)] {
[("testWithDefaultConfiguration", testWithDefaultConfiguration)]
}
}