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

AcceptanceTester::performOnContent()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
rs 10
cc 1
nc 1
nop 2
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