Total Complexity | 4 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 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() |
||
34 | } |
||
35 | } |
||
36 |