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

DigitsTraitTest   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 testSetTotalDigits() 0 7 1
A testCheckTotalDigits() 0 7 1
A testSetFractionDigits() 0 7 1
A testCheckFractionDigits() 0 7 1
A testFixFractionDigits() 0 7 1
1
<?php
2
namespace AlgoWeb\xsdTypes\Facets;
3
4
/**
5
 * Generated Test Class.
6
 */
7
class DigitsTraitTest 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\DigitsTrait::setTotalDigits
28
     * @todo   Implement testSetTotalDigits().
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 testSetTotalDigits()
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\DigitsTrait::checkTotalDigits
41
     * @todo   Implement testCheckTotalDigits().
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 testCheckTotalDigits()
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\DigitsTrait::setFractionDigits
54
     * @todo   Implement testSetFractionDigits().
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 testSetFractionDigits()
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\DigitsTrait::checkFractionDigits
67
     * @todo   Implement testCheckFractionDigits().
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 testCheckFractionDigits()
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\DigitsTrait::fixFractionDigits
80
     * @todo   Implement testFixFractionDigits().
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 testFixFractionDigits()
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