-
Notifications
You must be signed in to change notification settings - Fork 7
/
testrunner_results.txt
226 lines (184 loc) · 6.28 KB
/
testrunner_results.txt
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
04/17/18 - 09:40:04
-explicit array_<fn> functions from 'array_.ahk'-
array_concat(arrays*)
[PASS] Combine empty array and non empty array
[PASS] Combine two non empty arrays
[PASS] Combine three non empty arrays
array_every(array, callback)
[PASS] Function object
[PASS] Bound function object
[PASS] Bound function object #2
array_fill(array, value, start:=0, end:=0)
[PASS] No args
[PASS] Positive start
[PASS] Positive start & end
[PASS] Negative start
[PASS] Negative start & end
array_filter(array, callback)
[PASS] Collect even numbers
[PASS] Collect odd numbers
array_find(array, callback)
[PASS] Successful item lookup
[PASS] Unsuccessful item lookup
array_findIndex(array, callback)
[PASS] Successful item lookup
[PASS] Unsuccessful item lookup
array_forEach(array, callback)
[PASS] Act on global variable for result
[PASS] Change property of each object
array_includes(array, searchElement, fromIndex:=0)
[PASS] No args
[PASS] Positive fromIndex
[PASS] Negative fromIndex
[PASS] Negative fromIndex
array_join(array, delim)
[PASS] Join elements with newlines
[PASS] Join elements with commas
array_lastIndexOf(array, searchElement, fromIndex:=0)
[PASS] Get matching last index
[PASS] Get matching last index with bad starting index
[PASS] Get matching last index with positive starting index
[PASS] Get matching last index with negative starting index
array_map(array, callback)
[PASS] Double integer values
[PASS] Strip object down to single property
array_reduce(array, callback, initialValue:='__NULL__')
[PASS] Add all values of array
[PASS] Find maximum value of array
[PASS] Add all values of array to initial value
[PASS] Sum a property of all objects
[PASS] Copy a string property of all objects into an array
[PASS] Concat nested arrays
array_reduceRight(array, callback, initialValue:='__NULL__')
[PASS] Add all values of array
[PASS] Find maximum value of array
[PASS] Add all values of array to initial value
[PASS] Sum a property of all objects
[PASS] Copy a string property of all objects into an array
[PASS] Concat nested arrays
array_reverse(array)
[PASS] Reverse even sized int array
[PASS] Reverse odd sized int array
array_slice(array, start:=0, end:=0)
[PASS] No args
[PASS] Positive start
[PASS] Positive start & end
[PASS] Negative start
[PASS] Negative start & end
[PASS] Positive start & negative end
[PASS] Negative start & positive end
array_some(array, callback)
[PASS] Detect one even number
[PASS] Detect one odd number
[PASS] Fails to find large enough number
array_sort(callback)
[PASS] String array
[PASS] Number array
[PASS] Using accessor function with complex arrays: key='symbol'
[PASS] Using accessor function with complex arrays: key='morse'
array_splice(ByRef array, start, deleteCount:=-1, args*)
[PASS] Starting position only: array
[PASS] Starting position only: spliced
[PASS] Starting position with delete: array
[PASS] Starting position with delete: spliced
[PASS] Starting position no delete: array
[PASS] Starting position no delete: spliced
[PASS] Starting position with delete and args: array
[PASS] Starting position with delete and args: spliced
[PASS] Starting position no delete and args: array
[PASS] Starting position no delete and args: spliced
array_toString(array)
[PASS] Sequential int array to string
array_unshift(array, args*)
[PASS] Add two elements to start of array
04/17/18 - 09:40:04
-Array object extension from 'array_base.ahk'-
concat(arrays*)
[PASS] Combine empty array and non empty array
[PASS] Combine two non empty arrays
[PASS] Combine three non empty arrays
every(callback)
[PASS] Function object
[PASS] Bound function object
[PASS] Bound function object #2
fill(value, start:=0, end:=0)
[PASS] No args
[PASS] Positive start
[PASS] Positive start & end
[PASS] Negative start
[PASS] Negative start & end
filter(callback)
[PASS] Collect even numbers
[PASS] Collect odd numbers
find(callback)
[PASS] Successful item lookup
[PASS] Unsuccessful item lookup
findIndex(callback)
[PASS] Successful item lookup
[PASS] Unsuccessful item lookup
forEach(callback)
[PASS] Act on global variable for result
[PASS] Change property of each object
includes(searchElement, fromIndex:=0)
[PASS] No args
[PASS] Positive fromIndex
[PASS] Negative fromIndex
[PASS] Negative fromIndex
join(delim)
[PASS] Join elements with newlines
[PASS] Join elements with commas
lastIndexOf(searchElement, fromIndex:=0)
[PASS] Get matching last index
[PASS] Get matching last index with bad starting index
[PASS] Get matching last index with positive starting index
[PASS] Get matching last index with negative starting index
map(callback)
[PASS] Double integer values
[PASS] Strip object down to single property
reduce(callback, initialValue:='__NULL__')
[PASS] Add all values of array
[PASS] Find maximum value of array
[PASS] Add all values of array to initial value
[PASS] Sum a property of all objects
[PASS] Copy a string property of all objects into an array
[PASS] Concat nested arrays
reduceRight(callback, initialValue:='__NULL__')
[PASS] Add all values of array
[PASS] Find maximum value of array
[PASS] Add all values of array to initial value
[PASS] Sum a property of all objects
[PASS] Copy a string property of all objects into an array
[PASS] Concat nested arrays
reverse(array)
[PASS] Reverse even sized int array
[PASS] Reverse odd sized int array
slice(start:=0, end:=0)
[PASS] No args
[PASS] Positive start
[PASS] Positive start & end
[PASS] Negative start
[PASS] Negative start & end
[PASS] Positive start & negative end
[PASS] Negative start & positive end
some(callback)
[PASS] Detect one even number
[PASS] Detect one odd number
[PASS] Fails to find large enough number
sort(callback)
[PASS] String array
[PASS] Number array
[PASS] Using accessor function with complex arrays: key='symbol'
[PASS] Using accessor function with complex arrays: key='morse'
splice(start, deleteCount:=-1, args*)
[PASS] Starting position only: array
[PASS] Starting position only: spliced
[PASS] Starting position with delete: array
[PASS] Starting position with delete: spliced
[PASS] Starting position no delete: array
[PASS] Starting position no delete: spliced
[PASS] Starting position with delete and args: array
[PASS] Starting position with delete and args: spliced
[PASS] Starting position no delete and args: array
[PASS] Starting position no delete and args: spliced
unshift(args*)
[PASS] Add two elements to start of array