Create::seeNoSuggestions()   A
last analyzed

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
 * Finance module for HiPanel
4
 *
5
 * @link      https://github.com/hiqdev/hipanel-module-finance
6
 * @package   hipanel-module-finance
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2015-2019, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hipanel\modules\finance\tests\_support\Page\price\domain;
12
13
use hipanel\modules\finance\tests\_support\Page\price\certificate\Create as CreateCertificate;
14
15
class Create extends CreateCertificate
16
{
17
    protected function seeNoSuggestions(): void
18
    {
19
        $I = $this->tester;
20
21
        $I->see('No price suggestions for this object');
22
        $I->see('We could not suggest any new prices of type "Domain" for the selected object.');
23
        $I->see('Probably, they were already created earlier or this suggestion type is not compatible with this object type');
24
        $I->see('You can return back to plan');
25
    }
26
}
27