Files
SwiftLint/Tests/SwiftLintFrameworkTests/ExtraRulesTests.swift
T
2022-07-29 19:34:54 +00:00

17 lines
425 B
Swift

@testable import SwiftLintFramework
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)]
}
}