Completed
Push — master ( b7a766...0c69fc )
by Dmitry
26:02 queued 10:59
created

BillCest::ensureBillPageWorks()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace hipanel\modules\finance\tests\acceptance\manager;
4
5
use hipanel\helpers\Url;
6
use hipanel\tests\_support\Step\Acceptance\Manager;
7
8
class BillCest
9
{
10
    public $billId;
11
12
    public function ensureBillPageWorks(Manager $I): void
13
    {
14
        $I->login();
15
        $I->needPage(Url::to('@bill'));
16
    }
17
}
18