mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
17 lines
425 B
Swift
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)]
|
|
}
|
|
}
|