Completed
Push — master ( 170171...e699ef )
by Peter
25:38
created

UnitTester   A

Complexity

Total Complexity 19

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 19
c 2
b 0
f 0
lcom 1
cbo 3
dl 0
loc 8
rs 10
1
<?php
2
3
4
/**
5
 * Inherited Methods
6
 * @method void wantToTest($text)
7
 * @method void wantTo($text)
8
 * @method void execute($callable)
9
 * @method void expectTo($prediction)
10
 * @method void expect($prediction)
11
 * @method void amGoingTo($argumentation)
12
 * @method void am($role)
13
 * @method void lookForwardTo($achieveValue)
14
 * @method void comment($description)
15
 * @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL)
16
 *
17
 * @SuppressWarnings(PHPMD)
18
*/
19
class UnitTester extends \Codeception\Actor
20
{
21
    use _generated\UnitTesterActions;
22
23
   /**
24
    * Define custom actions here
25
    */
26
}
27