mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
849dbfdd28
* `InferSendableFromCaptures` * `GlobalActorIsolatedTypesUsability`
17 lines
459 B
Swift
17 lines
459 B
Swift
@testable import SwiftLintExtraRules
|
|
import TestHelpers
|
|
|
|
final class ExtraRulesTests: SwiftLintTestCase, @unchecked Sendable {
|
|
func testWithDefaultConfiguration() {
|
|
for ruleType in extraRules() {
|
|
verifyRule(ruleType.description)
|
|
}
|
|
}
|
|
}
|
|
|
|
extension ExtraRulesTests {
|
|
static var allTests: [(String, (ExtraRulesTests) -> () throws -> Void)] {
|
|
[("testWithDefaultConfiguration", testWithDefaultConfiguration)]
|
|
}
|
|
}
|