Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
34 | public function testRunFlash() |
||
35 | { |
||
36 | \Yii::$app->session->setFlash('success', [ |
||
37 | [ |
||
38 | 'title' => 'Your title', |
||
39 | 'message' => 'Your message', |
||
40 | 'animation' => false, |
||
41 | 'customClass' => 'animated jello', |
||
42 | ] |
||
43 | ]); |
||
44 | |||
45 | $alert = Alert::widget(['useSessionFlash' => true]); |
||
46 | $this->assertContains('', $alert); |
||
47 | } |
||
48 | |||
61 | } |