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

BillCest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 10
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A ensureBillPageWorks() 0 5 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