Completed
Push — master ( b864d9...3fa98b )
by Dmitry
07:42 queued 03:17
created

Update   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A updatePrices() 0 12 1
1
<?php
2
namespace hipanel\modules\finance\tests\_support\Page\price\certificate;
3
4
class Update extends Create
5
{
6
    public function updatePrices(): void
7
    {
8
        $I = $this->tester;
9
10
        $this->loadPage();
11
        $I->click('Update');
12
        $I->waitForText('Update');
13
        $this->fillRandomPrices('');
14
        $I->click('Save');
15
        $I->closeNotification('Prices were successfully updated');
16
        $this->seeRandomPrices();
17
    }
18
}
19