1 | <?php |
||
26 | final class CURLConfigurationTest extends PHPUnit_Framework_TestCase { |
||
27 | |||
28 | /** |
||
29 | * Tests the __constructor() method. |
||
30 | * |
||
31 | * @return void |
||
32 | */ |
||
33 | public function testConstruct() { |
||
55 | |||
56 | /** |
||
57 | * Tests the addHeader() method. |
||
58 | * |
||
59 | * @return void |
||
60 | */ |
||
61 | public function testAddHeader() { |
||
80 | |||
81 | /** |
||
82 | * Tests the clearHeader() method. |
||
83 | * |
||
84 | * @return void |
||
85 | */ |
||
86 | public function testClearHeaders() { |
||
96 | |||
97 | /** |
||
98 | * Tests the removeHeader() method. |
||
99 | * |
||
100 | * @return void |
||
101 | */ |
||
102 | public function testRemoveHeader() { |
||
117 | |||
118 | /** |
||
119 | * Tests the setAllowEncoding() method. |
||
120 | * |
||
121 | * @return void |
||
122 | */ |
||
123 | public function testSetAllowEncoding() { |
||
130 | |||
131 | /** |
||
132 | * Tests the setConnectTimeout() method. |
||
133 | * |
||
134 | * @return void |
||
135 | */ |
||
136 | public function testSetConnectTimeout() { |
||
143 | |||
144 | /** |
||
145 | * Tests the setDebug() method. |
||
146 | * |
||
147 | * @return void |
||
148 | */ |
||
149 | public function testSetDebug() { |
||
156 | |||
157 | /** |
||
158 | * Tests the setDebugFile() method. |
||
159 | * |
||
160 | * @return void |
||
161 | */ |
||
162 | public function testSetDebugFile() { |
||
169 | |||
170 | /** |
||
171 | * Tests the setHost() method. |
||
172 | * |
||
173 | * @return void |
||
174 | */ |
||
175 | public function testSetHost() { |
||
182 | |||
183 | /** |
||
184 | * Tests the setHttpPassword() method. |
||
185 | * |
||
186 | * @return void |
||
187 | */ |
||
188 | public function testSetHttpPassword() { |
||
195 | |||
196 | /** |
||
197 | * Tests the setHttpUsername() method. |
||
198 | * |
||
199 | * @return void |
||
200 | */ |
||
201 | public function testSetHttpUsername() { |
||
208 | |||
209 | /** |
||
210 | * Tests the setProxyHost() method. |
||
211 | * |
||
212 | * @return void |
||
213 | */ |
||
214 | public function testSetProxyHost() { |
||
221 | |||
222 | /** |
||
223 | * Tests the setProxyPassword() method. |
||
224 | * |
||
225 | * @return void |
||
226 | */ |
||
227 | public function testSetProxyPassword() { |
||
234 | |||
235 | /** |
||
236 | * Tests the setProxyPort() method. |
||
237 | * |
||
238 | * @return void |
||
239 | */ |
||
240 | public function testSetProxyPort() { |
||
247 | |||
248 | /** |
||
249 | * Tests the setProxyType() method. |
||
250 | * |
||
251 | * @return void |
||
252 | */ |
||
253 | public function testSetProxyType() { |
||
260 | |||
261 | /** |
||
262 | * Tests the setProxyUsername() method. |
||
263 | * |
||
264 | * @return void |
||
265 | */ |
||
266 | public function testSetProxyUsername() { |
||
273 | |||
274 | /** |
||
275 | * Tests the setRequestTimeout() method. |
||
276 | * |
||
277 | * @return void |
||
278 | */ |
||
279 | public function testSetRequestTimeout() { |
||
286 | |||
287 | /** |
||
288 | * Tests the setSslVerification() method. |
||
289 | * |
||
290 | * @return void |
||
291 | */ |
||
292 | public function testSetSslVerification() { |
||
299 | |||
300 | /** |
||
301 | * Tests the setUserAgent() method. |
||
302 | * |
||
303 | * @return void |
||
304 | */ |
||
305 | public function testSetUserAgent() { |
||
312 | |||
313 | /** |
||
314 | * Tests the setVerbose() method. |
||
315 | * |
||
316 | * @return void |
||
317 | */ |
||
318 | public function testSetVerbose() { |
||
325 | |||
326 | } |
||
327 |