|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace AppBundle\Entity; |
|
4
|
|
|
|
|
5
|
|
|
/** |
|
6
|
|
|
* Generated by PHPUnit_SkeletonGenerator on 2016-02-15 at 17:17:39. |
|
7
|
|
|
*/ |
|
8
|
|
|
class ContactTest extends \PHPUnit_Framework_TestCase { |
|
9
|
|
|
|
|
10
|
|
|
/** |
|
11
|
|
|
* @var Contact |
|
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 Contact; |
|
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\Contact::setAddress |
|
33
|
|
|
* @todo Implement testSetAddress(). |
|
34
|
|
|
*/ |
|
35
|
|
|
public function testSetAddress() { |
|
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\Contact::getAddress |
|
44
|
|
|
* @todo Implement testGetAddress(). |
|
45
|
|
|
*/ |
|
46
|
|
|
public function testGetAddress() { |
|
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\Contact::setZipcode |
|
55
|
|
|
* @todo Implement testSetZipcode(). |
|
56
|
|
|
*/ |
|
57
|
|
|
public function testSetZipcode() { |
|
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\Contact::getZipcode |
|
66
|
|
|
* @todo Implement testGetZipcode(). |
|
67
|
|
|
*/ |
|
68
|
|
|
public function testGetZipcode() { |
|
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\Contact::setTown |
|
77
|
|
|
* @todo Implement testSetTown(). |
|
78
|
|
|
*/ |
|
79
|
|
|
public function testSetTown() { |
|
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\Contact::getTown |
|
88
|
|
|
* @todo Implement testGetTown(). |
|
89
|
|
|
*/ |
|
90
|
|
|
public function testGetTown() { |
|
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\Contact::setPhone |
|
99
|
|
|
* @todo Implement testSetPhone(). |
|
100
|
|
|
*/ |
|
101
|
|
|
public function testSetPhone() { |
|
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\Contact::getPhone |
|
110
|
|
|
* @todo Implement testGetPhone(). |
|
111
|
|
|
*/ |
|
112
|
|
|
public function testGetPhone() { |
|
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\Contact::setFax |
|
121
|
|
|
* @todo Implement testSetFax(). |
|
122
|
|
|
*/ |
|
123
|
|
|
public function testSetFax() { |
|
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\Contact::getFax |
|
132
|
|
|
* @todo Implement testGetFax(). |
|
133
|
|
|
*/ |
|
134
|
|
|
public function testGetFax() { |
|
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\Contact::setMail |
|
143
|
|
|
* @todo Implement testSetMail(). |
|
144
|
|
|
*/ |
|
145
|
|
|
public function testSetMail() { |
|
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\Contact::getMail |
|
154
|
|
|
* @todo Implement testGetMail(). |
|
155
|
|
|
*/ |
|
156
|
|
|
public function testGetMail() { |
|
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\Contact::setContact |
|
165
|
|
|
* @todo Implement testSetContact(). |
|
166
|
|
|
*/ |
|
167
|
|
|
public function testSetContact() { |
|
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
|
|
|
* @covers AppBundle\Entity\Contact::getContact |
|
176
|
|
|
* @todo Implement testGetContact(). |
|
177
|
|
|
*/ |
|
178
|
|
|
public function testGetContact() { |
|
179
|
|
|
// Remove the following lines when you implement this test. |
|
180
|
|
|
$this->markTestIncomplete( |
|
181
|
|
|
'This test has not been implemented yet.' |
|
182
|
|
|
); |
|
183
|
|
|
} |
|
184
|
|
|
|
|
185
|
|
|
/** |
|
186
|
|
|
* @covers AppBundle\Entity\Contact::setGsm |
|
187
|
|
|
* @todo Implement testSetGsm(). |
|
188
|
|
|
*/ |
|
189
|
|
|
public function testSetGsm() { |
|
190
|
|
|
// Remove the following lines when you implement this test. |
|
191
|
|
|
$this->markTestIncomplete( |
|
192
|
|
|
'This test has not been implemented yet.' |
|
193
|
|
|
); |
|
194
|
|
|
} |
|
195
|
|
|
|
|
196
|
|
|
/** |
|
197
|
|
|
* @covers AppBundle\Entity\Contact::getGsm |
|
198
|
|
|
* @todo Implement testGetGsm(). |
|
199
|
|
|
*/ |
|
200
|
|
|
public function testGetGsm() { |
|
201
|
|
|
// Remove the following lines when you implement this test. |
|
202
|
|
|
$this->markTestIncomplete( |
|
203
|
|
|
'This test has not been implemented yet.' |
|
204
|
|
|
); |
|
205
|
|
|
} |
|
206
|
|
|
|
|
207
|
|
|
/** |
|
208
|
|
|
* @covers AppBundle\Entity\Contact::getId |
|
209
|
|
|
* @todo Implement testGetId(). |
|
210
|
|
|
*/ |
|
211
|
|
|
public function testGetId() { |
|
212
|
|
|
// Remove the following lines when you implement this test. |
|
213
|
|
|
$this->markTestIncomplete( |
|
214
|
|
|
'This test has not been implemented yet.' |
|
215
|
|
|
); |
|
216
|
|
|
} |
|
217
|
|
|
|
|
218
|
|
|
/** |
|
219
|
|
|
* @covers AppBundle\Entity\Contact::setName |
|
220
|
|
|
* @todo Implement testSetName(). |
|
221
|
|
|
*/ |
|
222
|
|
|
public function testSetName() { |
|
223
|
|
|
// Remove the following lines when you implement this test. |
|
224
|
|
|
$this->markTestIncomplete( |
|
225
|
|
|
'This test has not been implemented yet.' |
|
226
|
|
|
); |
|
227
|
|
|
} |
|
228
|
|
|
|
|
229
|
|
|
/** |
|
230
|
|
|
* @covers AppBundle\Entity\Contact::getName |
|
231
|
|
|
* @todo Implement testGetName(). |
|
232
|
|
|
*/ |
|
233
|
|
|
public function testGetName() { |
|
234
|
|
|
// Remove the following lines when you implement this test. |
|
235
|
|
|
$this->markTestIncomplete( |
|
236
|
|
|
'This test has not been implemented yet.' |
|
237
|
|
|
); |
|
238
|
|
|
} |
|
239
|
|
|
|
|
240
|
|
|
} |
|
241
|
|
|
|