Failed Conditions
Push — master ( a46fbb...c35fd9 )
by Alexander
01:13
created

SpaceOperatorUnitTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 62
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 62
rs 10
c 0
b 0
f 0
wmc 2
lcom 0
cbo 1

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getErrorList() 0 27 1
A getWarningList() 0 4 1
1
<?php
2
/**
3
 * CodingStandard_Tests_Formatting_SpaceOperatorUnitTest.
4
 *
5
 * PHP version 5
6
 *
7
 * @category PHP
8
 * @package  PHP_CodeSniffer
9
 * @author   Alexander Obuhovich <[email protected]>
10
 * @license  https://github.com/aik099/CodingStandard/blob/master/LICENSE BSD 3-Clause
11
 * @link     https://github.com/aik099/CodingStandard
12
 */
13
14
namespace CodingStandard\Tests\Formatting;
15
16
use TestSuite\AbstractSniffUnitTest;
17
18
/**
19
 * Unit test class for the SpaceOperator sniff.
20
 *
21
 * @category PHP
22
 * @package  PHP_CodeSniffer
23
 * @author   Alexander Obuhovich <[email protected]>
24
 * @license  https://github.com/aik099/CodingStandard/blob/master/LICENSE BSD 3-Clause
25
 * @link     https://github.com/aik099/CodingStandard
26
 */
27
class SpaceOperatorUnitTest extends AbstractSniffUnitTest
28
{
29
30
31
    /**
32
     * Returns the lines where errors should occur.
33
     *
34
     * The key of the array should represent the line number and the value
35
     * should represent the number of errors that should occur on that line.
36
     *
37
     * @param string $testFile Name of the file with test data.
38
     *
39
     * @return array(int => int)
40
     */
41
    public function getErrorList($testFile)
42
    {
43
        return array(
44
                // The "=" operator.
45
                2  => 1,
46
                // The "&=" operator.
47
                3  => 1,
48
                // The ".=" operator.
49
                4  => 1,
50
                // The "/=" operator.
51
                5  => 1,
52
                // The "-=" operator.
53
                6  => 1,
54
                // The "%=" operator.
55
                7  => 1,
56
                // The "*=" operator.
57
                8  => 1,
58
                // The "+=" operator.
59
                9  => 1,
60
                // The "^=" operator.
61
                10 => 1,
62
                // The "=>" operator.
63
                11 => 1,
64
                // The "=" on a new line.
65
                23 => 1,
66
               );
67
    }//end getErrorList()
68
69
70
    /**
71
     * Returns the lines where warnings should occur.
72
     *
73
     * The key of the array should represent the line number and the value
74
     * should represent the number of warnings that should occur on that line.
75
     *
76
     * @param string $testFile Name of the file with test data.
77
     *
78
     * @return array(int => int)
79
     */
80
    public function getWarningList($testFile)
81
    {
82
        return array();
83
    }//end getWarningList()
84
}//end class
85