We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48f20d9 commit 61eb2fdCopy full SHA for 61eb2fd
tests/Unit/DripperTest.php
@@ -7,6 +7,24 @@
7
8
class DripperTest extends TestCase
9
{
10
+ public function testAgeCheckIntervalAttributeValue()
11
+ {
12
+ $expectedResult = 2000;
13
+
14
+ $actualResult = (new Dripper)->ageCheckInterval;
15
16
+ $this->assertEquals($expectedResult, $actualResult);
17
+ }
18
19
+ public function testAgeThresholdAttributeValue()
20
21
+ $expectedResult = 7080000;
22
23
+ $actualResult = (new Dripper)->ageThreshold;
24
25
26
27
28
public function testUrlAttributeValue()
29
30
$expectedResult = "/genealabs/laravel-caffeine/drip";
0 commit comments