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

NamespaceDeclarationUnitTest   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 47
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 47
rs 10
c 0
b 0
f 0
wmc 3
lcom 0
cbo 1

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getErrorList() 0 16 2
A getWarningList() 0 4 1
1
<?php
2
/**
3
 * CodingStandard_Tests_Formatting_NamespaceDeclarationUnitTest.
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 NamespaceDeclaration 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 NamespaceDeclarationUnitTest 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
        if ($testFile !== 'NamespaceDeclarationUnitTest.1.inc') {
44
            return array();
45
        }
46
47
        return array(
48
                2  => 1,
49
                9  => 1,
50
                18 => 1,
51
                58 => 1,
52
                67 => 1,
53
                78 => 1,
54
                89 => 1,
55
               );
56
    }//end getErrorList()
57
58
59
    /**
60
     * Returns the lines where warnings should occur.
61
     *
62
     * The key of the array should represent the line number and the value
63
     * should represent the number of warnings that should occur on that line.
64
     *
65
     * @param string $testFile Name of the file with test data.
66
     *
67
     * @return array(int => int)
68
     */
69
    public function getWarningList($testFile)
70
    {
71
        return array();
72
    }//end getWarningList()
73
}//end class
74