Files
Danny Mösch 849dbfdd28 Enable upcoming features improving concurrency checking (#5994)
* `InferSendableFromCaptures`
* `GlobalActorIsolatedTypesUsability`
2025-02-10 19:23:42 +01:00

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)]
}
}