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

CreateGrouping   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A setGrouping() 0 6 1
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