mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
46 lines
1.6 KiB
Swift
46 lines
1.6 KiB
Swift
//
|
|
// LinuxMain.swift
|
|
// SwiftLint
|
|
//
|
|
// Created by JP Simard on 12/11/16.
|
|
// Copyright © 2016 Realm. All rights reserved.
|
|
//
|
|
|
|
@testable import SwiftLintFrameworkTests
|
|
import XCTest
|
|
|
|
XCTMain([
|
|
testCase(AttributesRuleTests.allTests),
|
|
testCase(ColonRuleTests.allTests),
|
|
testCase(CommandTests.allTests),
|
|
testCase(ConfigurationTests.allTests),
|
|
testCase(CustomRulesTests.allTests),
|
|
testCase(CyclomaticComplexityConfigurationTests.allTests),
|
|
testCase(CyclomaticComplexityRuleTests.allTests),
|
|
testCase(ExtendedNSStringTests.allTests),
|
|
testCase(FileHeaderRuleTests.allTests),
|
|
testCase(FunctionBodyLengthRuleTests.allTests),
|
|
testCase(GenericTypeNameRuleTests.allTests),
|
|
testCase(IdentifierNameRuleTests.allTests),
|
|
testCase(ImplicitlyUnwrappedOptionalConfigurationTests.allTests),
|
|
testCase(ImplicitlyUnwrappedOptionalRuleTests.allTests),
|
|
testCase(IntegrationTests.allTests),
|
|
testCase(LineLengthConfigurationTests.allTests),
|
|
testCase(LineLengthRuleTests.allTests),
|
|
testCase(LinterCacheTests.allTests),
|
|
testCase(NumberSeparatorRuleTests.allTests),
|
|
testCase(RegionTests.allTests),
|
|
testCase(ReporterTests.allTests),
|
|
testCase(RuleConfigurationsTests.allTests),
|
|
testCase(RulesTests.allTests),
|
|
testCase(RuleTests.allTests),
|
|
testCase(SourceKitCrashTests.allTests),
|
|
testCase(TodoRuleTests.allTests),
|
|
testCase(TrailingCommaRuleTests.allTests),
|
|
testCase(TypeNameRuleTests.allTests),
|
|
testCase(UnusedOptionalBindingRuleTests.allTests),
|
|
testCase(VerticalWhitespaceRuleTests.allTests),
|
|
testCase(YamlParserTests.allTests),
|
|
testCase(YamlSwiftLintTests.allTests)
|
|
])
|