mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
24ec44d288
validating that file names contain the name of a type or extension declared in the file (if any).
11 lines
441 B
Swift
11 lines
441 B
Swift
@testable import SwiftLintFrameworkTests
|
|
import XCTest
|
|
|
|
extension AttributesRuleTests {
|
|
static var allTests: [(String, (AttributesRuleTests) -> () throws -> Void)] = [
|
|
("testAttributesWithDefaultConfiguration", testAttributesWithDefaultConfiguration),
|
|
("testAttributesWithAlwaysOnSameLine", testAttributesWithAlwaysOnSameLine),
|
|
("testAttributesWithAlwaysOnLineAbove", testAttributesWithAlwaysOnLineAbove)
|
|
]
|
|
}
|