mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
267417e9a5
That also added to `project.pbxproj` for browsing in Xcode's Project Navigator. That used only on building by SPM
24 lines
435 B
Swift
24 lines
435 B
Swift
//
|
|
// main.swift
|
|
// SwiftLint
|
|
//
|
|
// Created by 野村 憲男 on 2/3/16.
|
|
// Copyright © 2016 Realm. All rights reserved.
|
|
//
|
|
|
|
import XCTest
|
|
|
|
XCTMain([
|
|
ConfigurationTests(),
|
|
CustomRulesTests(),
|
|
ExtendedNSStringTests(),
|
|
FunctionBodyLengthRuleTests(),
|
|
IntegrationTests(),
|
|
ReporterTests(),
|
|
RuleConfigurationsTests(),
|
|
RulesTests(),
|
|
RuleTests(),
|
|
YamlSwiftLintTests(),
|
|
YamlParserTests(),
|
|
])
|