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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
<?php
namespace Codeception\Util\Shared;
trait Asserts
{
protected function assert($arguments, $not = false)
{
$not = $not ? 'Not' : '';
$method = ucfirst(array_shift($arguments));
if (($method === 'True') && $not) {
$method = 'False';
$not = '';
}
if (($method === 'False') && $not) {
$method = 'True';
$not = '';
}
call_user_func_array(['\PHPUnit\Framework\Assert', 'assert' . $not . $method], $arguments);
}
protected function assertNot($arguments)
{
$this->assert($arguments, true);
}
/**
* Checks that two variables are equal.
*
* @param $expected
* @param $actual
* @param string $message
* @param float $delta
*/
protected function assertEquals($expected, $actual, $message = '', $delta = 0.0)
{
\PHPUnit\Framework\Assert::assertEquals($expected, $actual, $message, $delta);
}
/**
* Checks that two variables are not equal
*
* @param $expected
* @param $actual
* @param string $message
* @param float $delta
*/
protected function assertNotEquals($expected, $actual, $message = '', $delta = 0.0)
{
\PHPUnit\Framework\Assert::assertNotEquals($expected, $actual, $message, $delta);
}
/**
* Checks that two variables are same
*
* @param $expected
* @param $actual
* @param string $message
*/
protected function assertSame($expected, $actual, $message = '')
{
\PHPUnit\Framework\Assert::assertSame($expected, $actual, $message);
}
/**
* Checks that two variables are not same
*
* @param $expected
* @param $actual
* @param string $message
*/
protected function assertNotSame($expected, $actual, $message = '')
{
\PHPUnit\Framework\Assert::assertNotSame($expected, $actual, $message);
}
/**
* Checks that actual is greater than expected
*
* @param $expected
* @param $actual
* @param string $message
*/
protected function assertGreaterThan($expected, $actual, $message = '')
{
\PHPUnit\Framework\Assert::assertGreaterThan($expected, $actual, $message);
}
/**
* @deprecated
*/
protected function assertGreaterThen($expected, $actual, $message = '')
{
\PHPUnit\Framework\Assert::assertGreaterThan($expected, $actual, $message);
}
/**
* Checks that actual is greater or equal than expected
*
* @param $expected
* @param $actual
* @param string $message
*/
protected function assertGreaterThanOrEqual($expected, $actual, $message = '')
{
\PHPUnit\Framework\Assert::assertGreaterThanOrEqual($expected, $actual, $message);
}
/**
* @deprecated
*/
protected function assertGreaterThenOrEqual($expected, $actual, $message = '')
{
\PHPUnit\Framework\Assert::assertGreaterThanOrEqual($expected, $actual, $message);
}
/**
* Checks that actual is less than expected
*
* @param $expected
* @param $actual
* @param string $message
*/
protected function assertLessThan($expected, $actual, $message = '')
{
\PHPUnit\Framework\Assert::assertLessThan($expected, $actual, $message);
}
/**
* Checks that actual is less or equal than expected
*
* @param $expected
* @param $actual
* @param string $message
*/
protected function assertLessThanOrEqual($expected, $actual, $message = '')
{
\PHPUnit\Framework\Assert::assertLessThanOrEqual($expected, $actual, $message);
}
/**
* Checks that haystack contains needle
*
* @param $needle
* @param $haystack
* @param string $message
*/
protected function assertContains($needle, $haystack, $message = '')
{
\PHPUnit\Framework\Assert::assertContains($needle, $haystack, $message);
}
/**
* Checks that haystack doesn't contain needle.
*
* @param $needle
* @param $haystack
* @param string $message
*/
protected function assertNotContains($needle, $haystack, $message = '')
{
\PHPUnit\Framework\Assert::assertNotContains($needle, $haystack, $message);
}
/**
* Checks that string match with pattern
*
* @param string $pattern
* @param string $string
* @param string $message
*/
protected function assertRegExp($pattern, $string, $message = '')
{
\PHPUnit\Framework\Assert::assertRegExp($pattern, $string, $message);
}
/**
* Checks that string not match with pattern
*
* @param string $pattern
* @param string $string
* @param string $message
*/
protected function assertNotRegExp($pattern, $string, $message = '')
{
\PHPUnit\Framework\Assert::assertNotRegExp($pattern, $string, $message);
}
/**
* Checks that a string starts with the given prefix.
*
* @param string $prefix
* @param string $string
* @param string $message
*/
protected function assertStringStartsWith($prefix, $string, $message = '')
{
\PHPUnit\Framework\Assert::assertStringStartsWith($prefix, $string, $message);
}
/**
* Checks that a string doesn't start with the given prefix.
*
* @param string $prefix
* @param string $string
* @param string $message
*/
protected function assertStringStartsNotWith($prefix, $string, $message = '')
{
\PHPUnit\Framework\Assert::assertStringStartsNotWith($prefix, $string, $message);
}
/**
* Checks that variable is empty.
*
* @param $actual
* @param string $message
*/
protected function assertEmpty($actual, $message = '')
{
\PHPUnit\Framework\Assert::assertEmpty($actual, $message);
}
/**
* Checks that variable is not empty.
*
* @param $actual
* @param string $message
*/
protected function assertNotEmpty($actual, $message = '')
{
\PHPUnit\Framework\Assert::assertNotEmpty($actual, $message);
}
/**
* Checks that variable is NULL
*
* @param $actual
* @param string $message
*/
protected function assertNull($actual, $message = '')
{
\PHPUnit\Framework\Assert::assertNull($actual, $message);
}
/**
* Checks that variable is not NULL
*
* @param $actual
* @param string $message
*/
protected function assertNotNull($actual, $message = '')
{
\PHPUnit\Framework\Assert::assertNotNull($actual, $message);
}
/**
* Checks that condition is positive.
*
* @param $condition
* @param string $message
*/
protected function assertTrue($condition, $message = '')
{
\PHPUnit\Framework\Assert::assertTrue($condition, $message);
}
/**
* Checks that the condition is NOT true (everything but true)
*
* @param $condition
* @param string $message
*/
protected function assertNotTrue($condition, $message = '')
{
\PHPUnit\Framework\Assert::assertNotTrue($condition, $message);
}
/**
* Checks that condition is negative.
*
* @param $condition
* @param string $message
*/
protected function assertFalse($condition, $message = '')
{
\PHPUnit\Framework\Assert::assertFalse($condition, $message);
}
/**
* Checks that the condition is NOT false (everything but false)
*
* @param $condition
* @param string $message
*/
protected function assertNotFalse($condition, $message = '')
{
\PHPUnit\Framework\Assert::assertNotFalse($condition, $message);
}
/**
*
* @param $haystack
* @param $constraint
* @param string $message
*/
protected function assertThat($haystack, $constraint, $message = '')
{
\PHPUnit\Framework\Assert::assertThat($haystack, $constraint, $message);
}
/**
* Checks that haystack doesn't attend
*
* @param $haystack
* @param $constraint
* @param string $message
*/
protected function assertThatItsNot($haystack, $constraint, $message = '')
{
$constraint = new \PHPUnit\Framework\Constraint\LogicalNot($constraint);
\PHPUnit\Framework\Assert::assertThat($haystack, $constraint, $message);
}
/**
* Checks if file exists
*
* @param string $filename
* @param string $message
*/
protected function assertFileExists($filename, $message = '')
{
\PHPUnit\Framework\Assert::assertFileExists($filename, $message);
}
/**
* Checks if file doesn't exist
*
* @param string $filename
* @param string $message
*/
protected function assertFileNotExists($filename, $message = '')
{
\PHPUnit\Framework\Assert::assertFileNotExists($filename, $message);
}
/**
* @param $expected
* @param $actual
* @param $description
*/
protected function assertGreaterOrEquals($expected, $actual, $description = '')
{
\PHPUnit\Framework\Assert::assertGreaterThanOrEqual($expected, $actual, $description);
}
/**
* @param $expected
* @param $actual
* @param $description
*/
protected function assertLessOrEquals($expected, $actual, $description = '')
{
\PHPUnit\Framework\Assert::assertLessThanOrEqual($expected, $actual, $description);
}
/**
* @param $actual
* @param $description
*/
protected function assertIsEmpty($actual, $description = '')
{
\PHPUnit\Framework\Assert::assertEmpty($actual, $description);
}
/**
* @param $key
* @param $actual
* @param $description
*/
protected function assertArrayHasKey($key, $actual, $description = '')
{
\PHPUnit\Framework\Assert::assertArrayHasKey($key, $actual, $description);
}
/**
* @param $key
* @param $actual
* @param $description
*/
protected function assertArrayNotHasKey($key, $actual, $description = '')
{
\PHPUnit\Framework\Assert::assertArrayNotHasKey($key, $actual, $description);
}
/**
* Checks that array contains subset.
*
* @param array $subset
* @param array $array
* @param bool $strict
* @param string $message
*/
protected function assertArraySubset($subset, $array, $strict = false, $message = '')
{
\PHPUnit\Framework\Assert::assertArraySubset($subset, $array, $strict, $message);
}
/**
* @param $expectedCount
* @param $actual
* @param $description
*/
protected function assertCount($expectedCount, $actual, $description = '')
{
\PHPUnit\Framework\Assert::assertCount($expectedCount, $actual, $description);
}
/**
* @param $class
* @param $actual
* @param $description
*/
protected function assertInstanceOf($class, $actual, $description = '')
{
\PHPUnit\Framework\Assert::assertInstanceOf($class, $actual, $description);
}
/**
* @param $class
* @param $actual
* @param $description
*/
protected function assertNotInstanceOf($class, $actual, $description = '')
{
\PHPUnit\Framework\Assert::assertNotInstanceOf($class, $actual, $description);
}
/**
* @param $type
* @param $actual
* @param $description
*/
protected function assertInternalType($type, $actual, $description = '')
{
\PHPUnit\Framework\Assert::assertInternalType($type, $actual, $description);
}
/**
* Fails the test with message.
*
* @param $message
*/
protected function fail($message)
{
\PHPUnit\Framework\Assert::fail($message);
}
}