Completed
Push — master ( fa4a63...49daf5 )
by Andrii
10:40
created

AcceptanceTester   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A performOnContent() 0 4 1
1
<?php
2
3
namespace hipanel\tests\_support;
4
5
/**
6
 * Inherited Methods
7
 * @method void wantToTest($text)
8
 * @method void wantTo($text)
9
 * @method void execute($callable)
10
 * @method void expectTo($prediction)
11
 * @method void expect($prediction)
12
 * @method void amGoingTo($argumentation)
13
 * @method void am($role)
14
 * @method void lookForwardTo($achieveValue)
15
 * @method void comment($description)
16
 * @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL)
17
 *
18
 * @SuppressWarnings(PHPMD)
19
*/
20
class AcceptanceTester extends \Codeception\Actor
0 ignored issues
show
Bug introduced by
There is one abstract method getScenario in this class; you could implement it, or declare this class as abstract.
Loading history...
21
{
22
    use _generated\AcceptanceTesterActions;
23
24
   /**
25
    * Define custom actions here
26
    */
27
    public function performOnContent($actions, $timeout = null)
28
    {
29
        return $this->performOn('.content-wrapper', $actions, $timeout);
30
    }
31
}
32