-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAhkUnitTestSupplyment.ahk
167 lines (129 loc) · 3.07 KB
/
AhkUnitTestSupplyment.ahk
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
; Copyright (c) 2011, SATO Kentaro
; BSD 2-Clause license
#include %A_AppData%\AhkUnit\AhkUnit.ahk
class MethodCallTestClass extends AhkUnit_Framework {
static isSetUpBeforeClass := 0
static isToneDownBeforeClass := 0
static isSetUp := 0
static isToneDown := 0
static testRemaining := 3
static invalidTestCalled := false
SetUpBeforeClass() {
MethodCallTestClass.isSetUpBeforeClass++
}
TearDownAfterClass() {
MethodCallTestClass.isToneDownBeforeClass++
}
SetUp() {
MethodCallTestClass.isSetUp++
}
TearDown() {
MethodCallTestClass.isToneDown++
}
ThisIsTest() {
MethodCallTestClass.AssertTrue(true)
MethodCallTestClass.testRemaining -= 1
}
thisIsTestTooTest() {
MethodCallTestClass.AssertTrue(true)
MethodCallTestClass.testRemaining -= 2
}
thisIsNotTEST() {
MethodCallTestClass.invalidTestCalled := true
}
thisIsNotTestEither() {
MethodCallTestClass.invalidTestCalled := true
}
}
class TestResultTestClass extends AhkUnit_Framework {
static expectCount := { test: 6, assertion: 4, failure: 2, incomplete: 3 }
EmptyTest() {
}
Empty2Test() {
}
Empty3Test() {
}
ValidTest() {
this.AssertEqual(1, 1)
}
InvalidTest() {
this.AssertTrue(false)
this.AssertEqual("text", "Text")
}
Invalid2Test() {
this.AssertEqual(0, 1)
}
}
class UncaughtExceptionTestClass1 extends AhkUnit_Framework {
static expectCount := { test: 0, assertion: 0, failure: 1, incomplete: 0 }
SetUpBeforeClass() {
throw 1
}
DummyTest() {
; never executed below
this.AssertTrue(true)
}
}
class UncaughtExceptionTestClass2 extends AhkUnit_Framework {
static expectCount := { test: 1, assertion: 0, failure: 1, incomplete: 0 }
__New() {
throw 1
}
DummyTest() {
; never executed below
this.AssertTrue(true)
}
}
class UncaughtExceptionTestClass3 extends AhkUnit_Framework {
static expectCount := { test: 1, assertion: 0, failure: 1, incomplete: 0 }
SetUp() {
throw 1
}
DummyTest() {
; never executed below
this.AssertTrue(true)
}
}
class UncaughtExceptionTestClass4 extends AhkUnit_Framework {
static expectCount := { test: 1, assertion: 0, failure: 1, incomplete: 0 }
ExceptionTest() {
this.AssertTrue(true)
throw 1
; never executed below
this.AssertTrue(true)
}
}
class UncaughtExceptionTestClass5 extends AhkUnit_Framework {
static expectCount := { test: 1, assertion: 1, failure: 1, incomplete: 0 }
DummyTest() {
this.AssertTrue(true)
}
TearDown() {
throw 1
}
}
class UncaughtExceptionTestClass6 extends AhkUnit_Framework {
static expectCount := { test: 1, assertion: 1, failure: 1, incomplete: 0 }
DummyTest() {
this.AssertTrue(true)
}
TearDownAfterClass() {
throw 1
}
}
class UnexpectedExceptionTestClass extends AhkUnit_Framework {
static expectCount := { test: 1, assertion: 1, failure: 1, incomplete: 0 }
static BadExceptionTest_throws := "CorrectException"
BadExceptionTest() {
throw new BadException()
}
}
class BaseException {
__New() {
backtrace := Exception("", -1)
this.file := backtrace.file
this.line := backtrace.line
}
}
class BadException extends BaseException {
}