blob: 54ccd697f1b0c59f06cfef21469149f8bf90e68f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<?php
require_once __DIR__.'/../Base.php';
use Core\Session;
use Helper\App;
use Model\Config;
class AppHelperTest extends Base
{
public function testJsLang()
{
$h = new App($this->container);
$this->assertEquals('en', $h->jsLang());
}
public function testTimezone()
{
$h = new App($this->container);
$this->assertEquals('UTC', $h->getTimezone());
}
public function testFlashMessage()
{
$h = new App($this->container);
$s = new Session;
$this->assertEmpty($h->flashMessage());
$s->flash('test & test');
$this->assertEquals('<div class="alert alert-success alert-fade-out">test & test</div>', $h->flashMessage());
$this->assertEmpty($h->flashMessage());
$this->assertEmpty($h->flashMessage());
$s->flashError('test & test');
$this->assertEquals('<div class="alert alert-error">test & test</div>', $h->flashMessage());
$this->assertEmpty($h->flashMessage());
}
}
|