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

UtilityTest::testFormMarkRequiredFields()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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