Test Failed
Pull Request — master (#26)
by Christopher
03:21
created

MinMaxTraitTest   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 83
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
wmc 7
lcom 1
cbo 1
dl 0
loc 83
rs 10
c 0
b 0
f 0

7 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 3 1
A tearDown() 0 3 1
A testSetMaxExclusive() 0 7 1
A testSetMaxInclusive() 0 7 1
A testSetMinExclusive() 0 7 1
A testSetMinInclusive() 0 7 1
A testCheckMinMax() 0 7 1
1
<?php
2
namespace AlgoWeb\xsdTypes\Facets;
3
4
/**
5
 * Generated Test Class.
6
 */
7
class MinMaxTraitTest extends \PHPUnit_Framework_TestCase
8
{
9
10
    /**
11
     * Sets up the fixture, for example, opens a network connection.
12
     * This method is called before a test is executed.
13
     */
14
    protected function setUp()
15
    {
16
    }
17
18
    /**
19
     * Tears down the fixture, for example, closes a network connection.
20
     * This method is called after a test is executed.
21
     */
22
    protected function tearDown()
23
    {
24
    }
25
26
    /**
27
     * @covers \AlgoWeb\xsdTypes\Facets\MinMaxTrait::setMaxExclusive
28
     * @todo   Implement testSetMaxExclusive().
0 ignored issues
show
Coding Style introduced by
Comment refers to a TODO task

This check looks TODO comments that have been left in the code.

``TODO``s show that something is left unfinished and should be attended to.

Loading history...
29
     */
30
    public function testSetMaxExclusive()
31
    {
32
        // Remove the following lines when you implement this test.
33
        $this->markTestIncomplete(
34
            'This test has not been implemented yet.'
35
        );
36
    }
37
38
39
    /**
40
     * @covers \AlgoWeb\xsdTypes\Facets\MinMaxTrait::setMaxInclusive
41
     * @todo   Implement testSetMaxInclusive().
0 ignored issues
show
Coding Style introduced by
Comment refers to a TODO task

This check looks TODO comments that have been left in the code.

``TODO``s show that something is left unfinished and should be attended to.

Loading history...
42
     */
43
    public function testSetMaxInclusive()
44
    {
45
        // Remove the following lines when you implement this test.
46
        $this->markTestIncomplete(
47
            'This test has not been implemented yet.'
48
        );
49
    }
50
51
52
    /**
53
     * @covers \AlgoWeb\xsdTypes\Facets\MinMaxTrait::setMinExclusive
54
     * @todo   Implement testSetMinExclusive().
0 ignored issues
show
Coding Style introduced by
Comment refers to a TODO task

This check looks TODO comments that have been left in the code.

``TODO``s show that something is left unfinished and should be attended to.

Loading history...
55
     */
56
    public function testSetMinExclusive()
57
    {
58
        // Remove the following lines when you implement this test.
59
        $this->markTestIncomplete(
60
            'This test has not been implemented yet.'
61
        );
62
    }
63
64
65
    /**
66
     * @covers \AlgoWeb\xsdTypes\Facets\MinMaxTrait::setMinInclusive
67
     * @todo   Implement testSetMinInclusive().
0 ignored issues
show
Coding Style introduced by
Comment refers to a TODO task

This check looks TODO comments that have been left in the code.

``TODO``s show that something is left unfinished and should be attended to.

Loading history...
68
     */
69
    public function testSetMinInclusive()
70
    {
71
        // Remove the following lines when you implement this test.
72
        $this->markTestIncomplete(
73
            'This test has not been implemented yet.'
74
        );
75
    }
76
77
78
    /**
79
     * @covers \AlgoWeb\xsdTypes\Facets\MinMaxTrait::checkMinMax
80
     * @todo   Implement testCheckMinMax().
0 ignored issues
show
Coding Style introduced by
Comment refers to a TODO task

This check looks TODO comments that have been left in the code.

``TODO``s show that something is left unfinished and should be attended to.

Loading history...
81
     */
82
    public function testCheckMinMax()
83
    {
84
        // Remove the following lines when you implement this test.
85
        $this->markTestIncomplete(
86
            'This test has not been implemented yet.'
87
        );
88
    }
89
}
90