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

Create::seeNoSuggestions()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 9
rs 9.9666
c 0
b 0
f 0
cc 1
nc 1
nop 0
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