Passed
Push — release/0.4.8 ( e6b969 )
by Mathieu
11:47
created

AppTest   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 13
c 1
b 0
f 1
dl 0
loc 32
rs 10
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A testIsProduction() 0 6 1
A testIsDevelopment() 0 6 1
A testIsPrelive() 0 6 1
A testIsDebug() 0 6 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