Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class LteTest extends TestCase |
||
8 | { |
||
9 | public function testLteWithFirstArgIsLessThanSecondOne() |
||
10 | { |
||
11 | $firstArg = 1; |
||
12 | $secondArg = 2; |
||
13 | $actual = lte($firstArg)($secondArg); |
||
14 | $this->assertTrue($actual); |
||
15 | } |
||
16 | |||
17 | public function testLteWithFirstArgIsEqualToSecondOne() |
||
18 | { |
||
19 | $firstArg = 2; |
||
20 | $secondArg = 2; |
||
21 | $actual = lte($firstArg)($secondArg); |
||
22 | $this->assertTrue($actual); |
||
23 | } |
||
24 | |||
25 | public function testLteWithFirstArgIsGreaterThanSecondOne() |
||
31 | } |
||
32 | } |
||
33 |