Completed
Pull Request — master (#45)
by Laurent
04:03
created

SupplierTest::testGetOrderdate()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 6
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
namespace AppBundle\Entity;
4
5
/**
6
 * Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:36.
7
 */
8
class SupplierTest extends \PHPUnit_Framework_TestCase {
9
10
    /**
11
     * @var Supplier
12
     */
13
    protected $object;
14
15
    /**
16
     * Sets up the fixture, for example, opens a network connection.
17
     * This method is called before a test is executed.
18
     */
19
    protected function setUp() {
20
        $this->object = new Supplier;
21
    }
22
23
    /**
24
     * Tears down the fixture, for example, closes a network connection.
25
     * This method is called after a test is executed.
26
     */
27
    protected function tearDown() {
28
        
29
    }
30
31
    /**
32
     * @covers AppBundle\Entity\Supplier::setDelaydeliv
33
     * @todo   Implement testSetDelaydeliv().
34
     */
35
    public function testSetDelaydeliv() {
36
        // Remove the following lines when you implement this test.
37
        $this->markTestIncomplete(
38
            'This test has not been implemented yet.'
39
        );
40
    }
41
42
    /**
43
     * @covers AppBundle\Entity\Supplier::getDelaydeliv
44
     * @todo   Implement testGetDelaydeliv().
45
     */
46
    public function testGetDelaydeliv() {
47
        // Remove the following lines when you implement this test.
48
        $this->markTestIncomplete(
49
            'This test has not been implemented yet.'
50
        );
51
    }
52
53
    /**
54
     * @covers AppBundle\Entity\Supplier::setOrderdate
55
     * @todo   Implement testSetOrderdate().
56
     */
57
    public function testSetOrderdate() {
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
     * @covers AppBundle\Entity\Supplier::getOrderdate
66
     * @todo   Implement testGetOrderdate().
67
     */
68
    public function testGetOrderdate() {
69
        // Remove the following lines when you implement this test.
70
        $this->markTestIncomplete(
71
            'This test has not been implemented yet.'
72
        );
73
    }
74
75
    /**
76
     * @covers AppBundle\Entity\Supplier::setFamilyLog
77
     * @todo   Implement testSetFamilyLog().
78
     */
79
    public function testSetFamilyLog() {
80
        // Remove the following lines when you implement this test.
81
        $this->markTestIncomplete(
82
            'This test has not been implemented yet.'
83
        );
84
    }
85
86
    /**
87
     * @covers AppBundle\Entity\Supplier::getFamilyLog
88
     * @todo   Implement testGetFamilyLog().
89
     */
90
    public function testGetFamilyLog() {
91
        // Remove the following lines when you implement this test.
92
        $this->markTestIncomplete(
93
            'This test has not been implemented yet.'
94
        );
95
    }
96
97
    /**
98
     * @covers AppBundle\Entity\Supplier::setSubFamilyLog
99
     * @todo   Implement testSetSubFamilyLog().
100
     */
101
    public function testSetSubFamilyLog() {
102
        // Remove the following lines when you implement this test.
103
        $this->markTestIncomplete(
104
            'This test has not been implemented yet.'
105
        );
106
    }
107
108
    /**
109
     * @covers AppBundle\Entity\Supplier::getSubFamilyLog
110
     * @todo   Implement testGetSubFamilyLog().
111
     */
112
    public function testGetSubFamilyLog() {
113
        // Remove the following lines when you implement this test.
114
        $this->markTestIncomplete(
115
            'This test has not been implemented yet.'
116
        );
117
    }
118
119
    /**
120
     * @covers AppBundle\Entity\Supplier::setSlug
121
     * @todo   Implement testSetSlug().
122
     */
123
    public function testSetSlug() {
124
        // Remove the following lines when you implement this test.
125
        $this->markTestIncomplete(
126
            'This test has not been implemented yet.'
127
        );
128
    }
129
130
    /**
131
     * @covers AppBundle\Entity\Supplier::getSlug
132
     * @todo   Implement testGetSlug().
133
     */
134
    public function testGetSlug() {
135
        // Remove the following lines when you implement this test.
136
        $this->markTestIncomplete(
137
            'This test has not been implemented yet.'
138
        );
139
    }
140
141
    /**
142
     * @covers AppBundle\Entity\Supplier::__toString
143
     * @todo   Implement test__toString().
144
     */
145
    public function test__toString() {
146
        // Remove the following lines when you implement this test.
147
        $this->markTestIncomplete(
148
            'This test has not been implemented yet.'
149
        );
150
    }
151
152
    /**
153
     * @covers AppBundle\Entity\Supplier::setActive
154
     * @todo   Implement testSetActive().
155
     */
156
    public function testSetActive() {
157
        // Remove the following lines when you implement this test.
158
        $this->markTestIncomplete(
159
            'This test has not been implemented yet.'
160
        );
161
    }
162
163
    /**
164
     * @covers AppBundle\Entity\Supplier::isActive
165
     * @todo   Implement testIsActive().
166
     */
167
    public function testIsActive() {
168
        // Remove the following lines when you implement this test.
169
        $this->markTestIncomplete(
170
            'This test has not been implemented yet.'
171
        );
172
    }
173
174
}
175