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

MinMaxTraitTest::tearDown()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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