forked from Quick/Quick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLinuxMain.swift
45 lines (43 loc) · 1.67 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
import XCTest
import Quick
@testable import QuickTests
Quick.QCKMain([
FunctionalTests_AfterEachSpec.self,
AfterSuiteTests.self,
FunctionalTests_BeforeEachSpec.self,
FunctionalTests_BeforeSuite_BeforeSuiteSpec.self,
FunctionalTests_BeforeSuite_Spec.self,
FunctionalTests_ItSpec.self,
FunctionalTests_PendingSpec.self,
FunctionalTests_SharedExamples_BeforeEachSpec.self,
FunctionalTests_SharedExamples_Spec.self,
FunctionalTests_SharedExamples_ContextSpec.self,
Configuration_AfterEachSpec.self,
Configuration_BeforeEachSpec.self,
FunctionalTests_CrossReferencingSpecA.self,
FunctionalTests_CrossReferencingSpecB.self,
_FunctionalTests_FocusedSpec_Focused.self,
_FunctionalTests_FocusedSpec_Unfocused.self
],
configurations: [
FunctionalTests_SharedExamples_BeforeEachTests_SharedExamples.self,
FunctionalTests_SharedExamplesTests_SharedExamples.self,
FunctionalTests_Configuration_AfterEach.self,
FunctionalTests_Configuration_BeforeEach.self,
FunctionalTests_FocusedSpec_SharedExamplesConfiguration.self
],
testCases: [
testCase(AfterEachTests.allTests),
testCase(BeforeEachTests.allTests),
testCase(BeforeSuiteTests.allTests),
// testCase(DescribeTests.allTests),
testCase(ItTests.allTests),
testCase(PendingTests.allTests),
testCase(SharedExamples_BeforeEachTests.allTests),
testCase(SharedExamplesTests.allTests),
testCase(Configuration_AfterEachTests.allTests),
testCase(Configuration_BeforeEachTests.allTests),
testCase(FocusedTests.allTests),
testCase(FunctionalTests_CrossReferencingSpecA.allTests),
testCase(FunctionalTests_CrossReferencingSpecB.allTests)
])