mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
15b285527a
* Short names for test modules * Lint plugins and `Package.swift` in integration tests * Simplify and merge file groups in Bazel * Move common functions to `TestHelpers`
11 lines
445 B
Swift
11 lines
445 B
Swift
@testable import SwiftLintBuiltInRulesTests
|
|
import XCTest
|
|
|
|
extension AttributesRuleTests {
|
|
static var allTests: [(String, (AttributesRuleTests) -> () throws -> Void)] = [
|
|
("testAttributesWithDefaultConfiguration", testAttributesWithDefaultConfiguration),
|
|
("testAttributesWithAlwaysOnSameLine", testAttributesWithAlwaysOnSameLine),
|
|
("testAttributesWithAlwaysOnLineAbove", testAttributesWithAlwaysOnLineAbove),
|
|
]
|
|
}
|