Issues (13)

tests/_support/UnitTester.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace MP\ExtendedApi\tests\_support;
4
5
use _generated\UnitTesterActions;
0 ignored issues
show
The type _generated\UnitTesterActions was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
6
7
/**
8
 * Inherited Methods
9
 * @method void wantToTest($text)
10
 * @method void wantTo($text)
11
 * @method void execute($callable)
12
 * @method void expectTo($prediction)
13
 * @method void expect($prediction)
14
 * @method void amGoingTo($argumentation)
15
 * @method void am($role)
16
 * @method void lookForwardTo($achieveValue)
17
 * @method void comment($description)
18
 * @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL)
19
 *
20
 * @SuppressWarnings(PHPMD)
21
*/
22
class UnitTester extends \Codeception\Actor
23
{
24
    use UnitTesterActions;
25
26
   /**
27
    * Define custom actions here
28
    */
29
}
30