Completed
Push — master ( 7ec96a...9f5631 )
by Dmitry
15:28 queued 13:03
created

CreateGrouping::setGrouping()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace hipanel\modules\finance\tests\_support\Page\plan;
4
5
class CreateGrouping extends Create
6
{
7
    protected function setGrouping()
8
    {
9
        $I = $this->tester;
10
11
        $I->checkOption("//input[@name='Plan[is_grouping]'][@type='checkbox']");
12
    }
13
}
14