Completed
Push — master ( 00bad6...c7c8a3 )
by Dmitry
06:29
created

Create   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A seeNoSuggestions() 0 9 1
1
<?php
2
3
namespace hipanel\modules\finance\tests\_support\Page\price\domain;
4
5
use hipanel\modules\finance\tests\_support\Page\price\certificate\Create as CreateCertificate;
6
7
class Create extends CreateCertificate
8
{
9
    protected function seeNoSuggestions(): void
10
    {
11
        $I = $this->tester;
12
13
        $I->see("No price suggestions for this object");
14
        $I->see('We could not suggest any new prices of type "Domain" for the selected object.');
15
        $I->see('Probably, they were already created earlier or this suggestion type is not compatible with this object type');
16
        $I->see("You can return back to plan");
17
    }
18
}
19