1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Assert |
4
|
|
|
* |
5
|
|
|
* LICENSE |
6
|
|
|
* |
7
|
|
|
* This source file is subject to the MIT license that is bundled |
8
|
|
|
* with this package in the file LICENSE.txt. |
9
|
|
|
* If you did not receive a copy of the license and are unable to |
10
|
|
|
* obtain it through the world-wide-web, please send an email |
11
|
|
|
* to [email protected] so I can send you a copy immediately. |
12
|
|
|
*/ |
13
|
|
|
|
14
|
|
|
namespace Assert\Tests; |
15
|
|
|
|
16
|
|
|
class AssertionChainTest extends \PHPUnit_Framework_TestCase |
17
|
|
|
{ |
18
|
|
|
/** |
19
|
|
|
* @test |
20
|
|
|
*/ |
21
|
|
|
public function it_chains_assertions() |
|
|
|
|
22
|
|
|
{ |
23
|
|
|
\Assert\that(10)->notEmpty()->integer(); |
24
|
|
|
} |
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* @test |
28
|
|
|
*/ |
29
|
|
|
public function it_shifts_arguments_to_assertions_by_one() |
|
|
|
|
30
|
|
|
{ |
31
|
|
|
\Assert\that(10)->eq(10); |
32
|
|
|
} |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* @test |
36
|
|
|
*/ |
37
|
|
|
public function it_knowns_default_error_message() |
|
|
|
|
38
|
|
|
{ |
39
|
|
|
$this->setExpectedException('Assert\InvalidArgumentException', 'Not Null and such'); |
40
|
|
|
|
41
|
|
|
\Assert\that(null, 'Not Null and such')->notEmpty(); |
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
/** |
45
|
|
|
* @test |
46
|
|
|
*/ |
47
|
|
|
public function it_skips_assertions_on_valid_null() |
|
|
|
|
48
|
|
|
{ |
49
|
|
|
\Assert\that(null)->nullOr()->integer()->eq(10); |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
/** |
53
|
|
|
* @test |
54
|
|
|
*/ |
55
|
|
|
public function it_validates_all_inputs() |
|
|
|
|
56
|
|
|
{ |
57
|
|
|
\Assert\that(array(1, 2, 3))->all()->integer(); |
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
/** |
61
|
|
|
* @test |
62
|
|
|
*/ |
63
|
|
|
public function it_has_thatall_shortcut() |
|
|
|
|
64
|
|
|
{ |
65
|
|
|
\Assert\ThatAll(array(1, 2, 3))->integer(); |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
/** |
69
|
|
|
* @test |
70
|
|
|
*/ |
71
|
|
|
public function it_has_nullor_shortcut() |
|
|
|
|
72
|
|
|
{ |
73
|
|
|
\Assert\thatNullOr(null)->integer()->eq(10); |
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
/** |
77
|
|
|
* @expectedException \RuntimeException |
78
|
|
|
* @expectedExceptionMessage Assertion 'unknownAssertion' does not exist. |
79
|
|
|
* @test |
80
|
|
|
*/ |
81
|
|
|
public function it_throws_exception_for_unknown_assertion() |
|
|
|
|
82
|
|
|
{ |
83
|
|
|
\Assert\that(null)->unknownAssertion(); |
|
|
|
|
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
/** |
87
|
|
|
* @test |
88
|
|
|
*/ |
89
|
|
|
public function it_has_custom_shortcut() |
|
|
|
|
90
|
|
|
{ |
91
|
|
|
\Assert\that($this)->custom(function ($value) { |
92
|
|
|
return $value === $this; |
93
|
|
|
}); |
94
|
|
|
} |
95
|
|
|
} |
96
|
|
|
|