Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace GeneaLabs\LaravelCaffeine\Tests\Unit\Providers; |
||
19 | public function testAgeThresholdAttributeValue() |
||
20 | { |
||
21 | $expectedResult = 7080000; |
||
22 | |||
23 | $actualResult = (new Dripper)->ageThreshold; |
||
1 ignored issue
–
show
|
|||
24 | |||
25 | $this->assertEquals($expectedResult, $actualResult); |
||
26 | } |
||
55 |