Passed
Push — master ( d4b512...7b57a9 )
by Mathieu
13:17 queued 10:26
created

AppTest::testIsDevelopment()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 0
loc 6
rs 10
c 1
b 0
f 1
1
<?php
2
class AppTest extends \PHPUnit\Framework\TestCase
3
{
4
    public function testIsDebug()
5
    {
6
        $app = new \Suricate\App();
7
        $app->mode = \Suricate\App::DEBUG_MODE;
8
9
        $this->assertTrue($app->isDebug());
10
    }
11
12
    public function testIsDevelopment()
13
    {
14
        $app = new \Suricate\App();
15
        $app->mode = \Suricate\App::DEVELOPMENT_MODE;
16
17
        $this->assertTrue($app->isDevelopment());
18
    }
19
20
    public function testIsPrelive()
21
    {
22
        $app = new \Suricate\App();
23
        $app->mode = \Suricate\App::PRELIVE_MODE;
24
25
        $this->assertTrue($app->isPrelive());
26
    }
27
28
    public function testIsProduction()
29
    {
30
        $app = new \Suricate\App();
31
        $app->mode = \Suricate\App::PRODUCTION_MODE;
32
33
        $this->assertTrue($app->isProduction());
34
    }
35
}
36