-
-
Notifications
You must be signed in to change notification settings - Fork 618
/
LinuxMain.swift
82 lines (80 loc) · 3.03 KB
/
LinuxMain.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import XCTest
import Quick
@testable import SourceryLibTests
@testable import TemplatesTests
@testable import CodableContextTests
@main struct Main {
static func main() {
Quick.QCKMain([
ActorSpec.self,
AnnotationsParserSpec.self,
ClassSpec.self,
ConfigurationSpec.self,
DiffableSpec.self,
DryOutputSpec.self,
EnumSpec.self,
FileParserAssociatedTypeSpec.self,
FileParserAttributesSpec.self,
FileParserMethodsSpec.self,
FileParserProtocolCompositionSpec.self,
FileParserSpec.self,
FileParserSubscriptsSpec.self,
FileParserVariableSpec.self,
GeneratorSpec.self,
MethodSpec.self,
ParserComposerSpec.self,
ProtocolSpec.self,
SourcerySpecTests.self,
StencilTemplateSpec.self,
StringViewSpec.self,
StructSpec.self,
SwiftTemplateTests.self,
TemplateAnnotationsParserSpec.self,
TemplatesAnnotationParserPassInlineCodeSpec.self,
TypeNameSpec.self,
TypeSpec.self,
TypealiasSpec.self,
TypedSpec.self,
VariableSpec.self,
VerifierSpec.self,
CodableContextTests.self,
TemplatesTests.self
],
configurations: [],
testCases: [
testCase(ActorSpec.allTests),
testCase(AnnotationsParserSpec.allTests),
testCase(ClassSpec.allTests),
testCase(ConfigurationSpec.allTests),
testCase(DiffableSpec.allTests),
testCase(DryOutputSpec.allTests),
testCase(EnumSpec.allTests),
testCase(FileParserAssociatedTypeSpec.allTests),
testCase(FileParserAttributesSpec.allTests),
testCase(FileParserMethodsSpec.allTests),
testCase(FileParserProtocolCompositionSpec.allTests),
testCase(FileParserSpec.allTests),
testCase(FileParserSubscriptsSpec.allTests),
testCase(FileParserVariableSpec.allTests),
testCase(GeneratorSpec.allTests),
testCase(MethodSpec.allTests),
testCase(ParserComposerSpec.allTests),
testCase(ProtocolSpec.allTests),
testCase(SourcerySpecTests.allTests),
testCase(StencilTemplateSpec.allTests),
testCase(StringViewSpec.allTests),
testCase(StructSpec.allTests),
testCase(SwiftTemplateTests.allTests),
testCase(TemplateAnnotationsParserSpec.allTests),
testCase(TemplatesAnnotationParserPassInlineCodeSpec.allTests),
testCase(TypeNameSpec.allTests),
testCase(TypeSpec.allTests),
testCase(TypealiasSpec.allTests),
testCase(TypedSpec.allTests),
testCase(VariableSpec.allTests),
testCase(VerifierSpec.allTests),
testCase(CodableContextTests.allTests),
testCase(TemplatesTests.allTests)
])
}
}