Completed
Push — master ( a1059e...55b12e )
by Michael
01:29
created

UtilityTest   A

Complexity

Total Complexity 8

Size/Duplication

Total Lines 43
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 43
rs 10
c 0
b 0
f 0
wmc 8
lcom 0
cbo 0

8 Methods

Rating   Name   Duplication   Size   Complexity  
A testGetInstance() 0 4 1
A testGetModuleOption() 0 4 1
A testGetWysiwygForm() 0 4 1
A testJavascriptLinkConfirm() 0 4 1
A testRedirect() 0 4 1
A testGetModuleName() 0 4 1
A testNeedsAsterisk() 0 4 1
A testFormMarkRequiredFields() 0 4 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: mamba
5
 * Date: 2017-12-04
6
 * Time: 06:21
7
 */
8
9
use XoopsModules\Marquee\Utility\test;
10
11
class UtilityTest extends \Codeception\Test\Unit
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
12
{
13
14
    public function testGetInstance()
15
    {
16
17
    }
18
19
    public function testGetModuleOption()
20
    {
21
22
    }
23
24
    public function testGetWysiwygForm()
25
    {
26
27
    }
28
29
    public function testJavascriptLinkConfirm()
30
    {
31
32
    }
33
34
    public function testRedirect()
35
    {
36
37
    }
38
39
    public function testGetModuleName()
40
    {
41
42
    }
43
44
    public function testNeedsAsterisk()
45
    {
46
47
    }
48
49
    public function testFormMarkRequiredFields()
50
    {
51
52
    }
53
}
54