UtilityTest   A
last analyzed

Complexity

Total Complexity 8

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
dl 0
loc 32
rs 10
c 1
b 0
f 0
wmc 8

8 Methods

Rating   Name   Duplication   Size   Complexity  
A testGetModuleOption() 0 2 1
A testRedirect() 0 2 1
A testGetWysiwygForm() 0 2 1
A testNeedsAsterisk() 0 2 1
A testGetInstance() 0 2 1
A testFormMarkRequiredFields() 0 2 1
A testJavascriptLinkConfirm() 0 2 1
A testGetModuleName() 0 2 1
1
<?php declare(strict_types=1);
2
3
/**
4
 * Created by PhpStorm.
5
 * User: mamba
6
 * Date: 2017-12-04
7
 * Time: 06:21
8
 */
9
10
use Codeception\Test\Unit;
0 ignored issues
show
Bug introduced by
The type Codeception\Test\Unit 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...
11
12
/**
13
 * Class UtilityTest
14
 */
15
class UtilityTest extends Unit
16
{
17
    public function testGetInstance(): void
18
    {
19
    }
20
21
    public function testGetModuleOption(): void
22
    {
23
    }
24
25
    public function testGetWysiwygForm(): void
26
    {
27
    }
28
29
    public function testJavascriptLinkConfirm(): void
30
    {
31
    }
32
33
    public function testRedirect(): void
34
    {
35
    }
36
37
    public function testGetModuleName(): void
38
    {
39
    }
40
41
    public function testNeedsAsterisk(): void
42
    {
43
    }
44
45
    public function testFormMarkRequiredFields(): void
46
    {
47
    }
48
}
49