Completed
Push — master ( 20b8ce...b87dd6 )
by Alexey
05:19
created

AboutCest::checkAbout()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
namespace frontend\tests\functional;
4
5
use frontend\tests\FunctionalTester;
6
7
/**
8
 * Class AboutCest
9
 * @package frontend\tests\functional
10
 */
11
class AboutCest
12
{
13
    /**
14
     * @param FunctionalTester $I
15
     */
16
    public function checkAbout(FunctionalTester $I)
17
    {
18
        $I->amOnRoute('main/default/about');
19
        $I->see('About', 'h1');
20
    }
21
}
22