Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « System.Net « Test « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe1ab1f713f9ba7f745d6c23630a6a543f24e57c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
2009-05-17  Gert Driesen  <drieseng@users.sourceforge.net>

	* CookieTest.cs: Added test for Path.
	* CookieContainerTest.cs: Added and improved .ctor tests.
	Improved tests for Capacity and MaxCookieSize. Added tests for
	PerDomainCapacity. Added tests for Add overloads, GetCookieHeader,
	GetCookies and SetCookies. Added test for bug #421827.

2009-05-02  Atsushi Enomoto  <atsushi@ximian.com>

	* CredentialCacheTest.cs : new tests for get/add/remove.
	  Patch by Mineda Nozomi.

2009-04-21 Gonzalo Paniagua Javier <gonzalo@novell.com>

	* DnsTest.cs: new IP for go-mono and fix AsyncResolve test.

2009-04-21  Sebastien Pouliot  <sebastien@ximian.com>

	* EndPointTest.cs: New

2009-02-08  Gert Driesen  <drieseng@users.sourceforge.net>

	* DnsTest.cs: Use Assert syntax, and spaces to tabs. Added tests
	for argument checks.

2009-02-08  Gert Driesen  <drieseng@users.sourceforge.net>

	* HttpWebRequestTest.cs: Added Not-Modified-Since test. Updated
	bug numbers.

2009-02-05  Gert Driesen  <drieseng@users.sourceforge.net>

	* HttpListener2Test.cs: Make tests quiet.
	* HttpWebRequestTest.cs: Added test for bug #471782.

2009-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>

	* IPAddressTest.cs: tests for bug #467472.

2009-01-16 Gonzalo Paniagua Javier <gonzalo@novell.com>

	* FtpWebRequestTest.cs: add directory listing test when the $HOME is
	not /.

2009-01-12 Gonzalo Paniagua Javier <gonzalo@novell.com>

	* FtpWebRequestTest.cs: test deleting a file.

2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>

	* HttpListener2Test.cs: make sure we dispose the listener.

2008-11-17 Gonzalo Paniagua Javier <gonzalo@novell.com>

	* HttpListener2Test.cs: (CreateNS) set a default read/write timeout
	of 5s.

2008-11-13 Gonzalo Paniagua Javier <gonzalo@novell.com>

	* FtpWebRequestTest.cs: the upload test now passes with the MS
	runtime. Added another test for download.

2008-11-12 Gonzalo Paniagua Javier <gonzalo@novell.com>

	* HttpListener2Test.cs: Fixed Test7.

2008-11-03 Gonzalo Paniagua Javier <gonzalo@novell.com>

	* FtpWebRequestTest.cs: add test for bug 333985.

2008-10-30 Gonzalo Paniagua Javier <gonzalo@novell.com>

	* HttpWebResponseTest.cs:
	* SocketResponder.cs:
	* HttpWebRequestTest.cs: don't pretend to be a 1.1 server or the
	socket will stay open. Timeout for Ntlm test is 5s now.

2008-10-19  Gert Driesen  <drieseng@users.sourceforge.net>

	* HttpWebRequestTest.cs: Fixed test for bug #429200.

2008-10-18  Gert Driesen  <drieseng@users.sourceforge.net>

	* HttpWebRequestTest.cs: Added test for bug #429200.

2008-10-08 Gonzalo Paniagua Javier <gonzalo@novell.com>

	* HttpWebRequestTest.cs: mini-test case for NTLM auth.

2008-08-06  Atsushi Enomoto  <atsushi@ximian.com>

	* IPAddressTest.cs : added test strings for bug #411920 as well as
	  enabling some ipv4ParseOK strings.

2008-07-25  Gert Driesen  <drieseng@users.sourceforge.net>

	* HttpWebResponseTest.cs: Enabled tests.

2008-07-03  Gert Driesen  <drieseng@users.sourceforge.net>

	* HttpListener2Test.cs: Added test for multiple responses.
	* HttpWebResponseTest.cs: Added tests for disposed checks.

2008-04-18  Gert Driesen  <drieseng@users.sourceforge.net>

	* FileWebRequestTest.cs: Now that we have proper locking for file
	deletes on unix, bug #323388 applies to unix as well.

2008-04-06  Geoff Norton  <gnorton@novell.com>

	* HttpListener2Test.cs:
	* HttpListenerRequestTest.cs: HttpListener Basic authenticationt test
	from Maciej Paszta <paszczi@go2.pl>

2008-02-09  Daniel Nauck  <dna@mono-project.de>

	* CookieContainerTest.cs: added some not working Add/Expired tests

2008-02-09  Daniel Nauck  <dna@mono-project.de>

	* CookieTest.cs: added tests for public fields

2008-01-27  Gert Driesen  <drieseng@users.sourceforge.net>

	* IPAddressTest.cs: Remove use of deprecated Assertion. Improved
	existing tests.

2008-01-26  Daniel Nauck  <dna@mono-project.de>

	* CookieTest.cs: enabled ToString () test,
	added Version property test

2008-01-26  Daniel Nauck  <dna@mono-project.de>

	* CookieTest.cs: added tests for Cookie.ToString (), see bug #316017,
	fixed line endings

2008-01-17  Zoltan Varga  <vargaz@gmail.com>

	* HttpWebRequestTest.cs: Disable #353495 since it fails on the 2.0 profile.

2008-01-15  Atsushi Enomoto  <atsushi@ximian.com>

	* HttpWebRequestTest.cs : added test for bug #353495.

2007-12-03  Gert Driesen  <drieseng@users.sourceforge.net>

	* WebClient.cs: Added tests for argument checks.

2007-10-21  Gert Driesen  <drieseng@users.sourceforge.net>

	* WebProxyTest.cs: Remove unused fields.

2007-10-15  Gert Driesen  <drieseng@users.sourceforge.net>

	* WebRequestTest.cs: Fixed test for serialization ctor to match
	1.0 profile change. Added trivial tests to argument null checks.
	Added test for DefaultWebProxy. Fixed line endings.

2007-09-30  Gert Driesen  <drieseng@users.sourceforge.net>

	* HttpListenerRequestTest.cs: Added test for HttpMethod.

2007-09-30  Gert Driesen  <drieseng@users.sourceforge.net>

	* HttpListenerRequestTest.cs: Added test for HasEntityBody.
	* HttpListener2Test.cs: Removed CWL.

2007-08-29  Atsushi Enomoto  <atsushi@ximian.com>

	* IPAddressTest.cs : added an address with scope id to parse/format
	  test.

2007-06-28  Chris Howie  <cdhowie@nerdshack.com>

	* ServicePointTest.cs: Add some loose tests for
	ServicePoint.BindIPEndPointDelegate.

2007-08-01  Rodrigo Kumpera  <rkumpera@novell.com>

	* HttpListener2Test.cs: Fixed Cookie Test 

2007-07-17  Rodrigo Kumpera  <rkumpera@novell.com>

	* HttpListener2Test.cs: Tests for cookie receiving and sending, related to bug #81627

2007-07-17  Gert Driesen  <drieseng@users.sourceforge.net>

	* HttpWebRequestTest.cs: Fixed and enabled InternalServerError test.
	Added test for response without Content-Length.

2007-07-15  Gert Driesen  <drieseng@users.sourceforge.net>

	* HttpWebRequestTest.cs: Remove usage of deprecated Assertion class.
	Fixed Sync test.  Fixed InternalServerError to pass on .NET 2.0, and
	renumbered tests. Added test for bug #81504.

2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>

	* HttpWebRequestTest.cs: Added test for exception thrown on read
	timeout. Added tests for bug #81624 and #81671.

2007-04-23  Marek Habersack  <mhabersack@novell.com>

	* CookieContainerTest.cs: the GetCookies test works now.

2007-04-21  Gert Driesen  <drieseng@users.sourceforge.net>

	* CookieContainerTest.cs: Removed usage of deprecated Asssertion
	class. Added test for bug #81421.
	* SocketResponder.cs: Thread-safety fixes.

2007-03-07  Vladimir Krasnov  <vladimirk@mainsoft.com>

	* HttpListenerPrefixCollectionTest.cs, HttpListenerTest.cs: removed not
	supported calls for TARGET_JVM because of validation failures

2007-02-24  Gert Driesen  <drieseng@users.sourceforge.net>

	* HttpWebRequestTest.cs: Added test for bug #80944.

2007-02-08  Ilya Kharmatsky <ilyak -at- mainsoft.com>

	* FileWebRequestTest.cs: Excluded not working under TARGET_JVM
	configuration code in GetResponse_File_DoesNotExist test.
	* HttpWebRequestTest.cs: Excluded not working under TARGET_JVM
	configuration test 'Sync'

2007-02-02  Gert Driesen  <drieseng@users.sourceforge.net>

	* SocketResponder.cs: Fixed typo. Moved to correct namespace.

2007-02-02  Gert Driesen  <drieseng@users.sourceforge.net>

	* FileWebRequestTest.cs: Separate tests that fail on Windows due to
	bug #80700, and ignore them on Windows.

2007-02-01  Gert Driesen  <drieseng@users.sourceforge.net>

	* WebProxyTest.cs: Added tests that cover regression introduced by
	previous change.

2007-01-31  Ilya Kharmatsky  <ilyak -at- mainsoft.com>

	* IPAddressTest.cs, WebProxyTest.cs, WebHeaderCollectionTest.cs,
	  ServicePointManagerTest.cs, ServicePointTest.cs:
	  Excluded not working in Grasshopper tests, under 'TARGET_JVM'
	  directive
	* HttpListenerPrefixCollectionTest.cs, HttpListenerTest.cs,
	  HttpListenerBasicIdentityTest.cs, HttpListener2Test.cs:
	  Excluded entire test fixture, since HttpListener still not 
	  implemented in Grasshopper.
	* FileWebRequestTest.cs, FileWebResponseTest.cs:
	  Excluded not working in Grasshopper tests and provided different
	  implementation of helper methods - under 'TARGET_JVM'

2007-01-30  Atsushi Enomoto  <atsushi@ximian.com>

	* HttpWebRequestTest.cs : use correct attribute.

2007-01-29  Gert Driesen  <drieseng@users.sourceforge.net>

	* HttpWebRequestTest.cs: Added tests for case-sensitive dealing with
	HTTP method.
	* SocketResponser.cs: Utility class for tests that require a listener.

2007-01-29  Ilya Kharmatsky <ilyak -at- mainsoft.com>
	
	* IPAddressTest.cs: Fixed missing bracket (under TARGET_JVM)

2007-01-28  Ilya Kharmatsky <ilyak -at- mainsoft.com>

	* IPAddressTest.cs: Added 'Ignore' attribute for 
	Constructor0_Address_Invalid test under TARGET_JVM directive.

2007-01-28  Gert Driesen  <drieseng@users.sourceforge.net>

	* IPAddressTest.cs: Added test for invalid addresses. Fixed 4-byte
	test on 2.0 profile.

2007-01-28  Gert Driesen  <drieseng@users.sourceforge.net>

	* FileWebRequestTest.cs: Reworked tests to no longer rely on TMPDIR.
	Added tests for ConnectionGroupName, ContentLength, ContentType,
	Credentials, GetRequestStream, GetResponse, Method, PreAuthenticate,
	Proxy, RequestUri, Timeout. Added binary serialization compatibility
	tests.
	* FileWebResponseTest.cs: Added tests for ContentLength, ContentType,
	GetResponseStream, Headers, ResponseUri.

2007-01-28  Gert Driesen  <drieseng@users.sourceforge.net>

	* WebHeaderCollectionTest.cs: Added tests for binary serialization
	compatibility.

2007-01-28  Gert Driesen  <drieseng@users.sourceforge.net>

	* WebProxyTest.cs: Move IsBypassed null check to separate test, and
	fixed it for 2.0 profile. Added test for binary serialization.

2007-01-25  Ilya Kharmatsky  <ilyak -at- mainsoft.com>

	* FileWebRequestTest.cs: Workaround Grasshopper's bugs with
	'Ignore' and 'NotWorking' attributes.

2007-01-11  Miguel de Icaza  <miguel@novell.com>

	* HttpListener2Test.cs: Put a bunch of verbs that would not be
	allowed. 

2006-12-28  Gert Driesen  <drieseng@users.sourceforge.net>

	* IPAddressTest.cs: Added 4-byte and null address tests.

2006-11-20 Andrew Skiba <andrews@mainsoft.com>

	* WebHeaderCollectionTest.cs: fix Indexers test to compile on 2.0

2006-11-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* WebHeaderCollectionTest.cs: the Indexers test only compiles on 1.x

2006-11-07  Dick Porter  <dick@ximian.com>

	* DnsTest.cs: GetHostByAddressString5() should only throw
	SocketException on pre-2.0 profiles

2006-11-03  Dick Porter  <dick@ximian.com>

	* DnsTest.cs: Re-enable GetHostEntry

2006-10-22  Zoltan Varga  <vargaz@gmail.com>

	* DnsTest.cs: Disable GetHostEntry test as it currently fails.

2006-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HttpListener2Test.cs: new tests for headers sent separate from body
	and together.

2006-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HttpListener2Test.cs: test using StreamReader from InputStream.

2006-08-20  Miguel de Icaza  <miguel@novell.com>

	* HttpListener2Test.cs: Add test case for bug #79112

2006-04-03  Chris Toshok  <toshok@ximian.com>

	* HttpWebRequestTest.cs (Missing_ContentEncoding): add test to
	handle missing content encoding header.

2006-03-28  Atsushi Enomoto  <atsushi@ximian.com>

	* DnsTest.cs : added test for GetHostEntry.

2006-03-28  Atsushi Enomoto  <atsushi@ximian.com>

	* IPAddressTest.cs : actually #11 in TryParse() is not working.
	  added more tests on IsIPv6Blah properties.

2006-03-27  Atsushi Enomoto  <atsushi@ximian.com>

	* IPAddressTest.cs : added some tests for TryParse() and IPv6 related
	  properties.

2006-02-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>

	* FtpWebRequestTest.cs: Add a small check for Method.
	
2006-02-03  Atsushi Enomoto  <atsushi@ximian.com>

	* WebRequestTest.cs : FtpWebRequest is only NET_2_0.

2006-02-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>

	* FtpWebRequestTest.cs: New file to test properties/methods
	that don't need any connection to work.
	
2005-02-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>

	* WebRequestTest.cs: Add ftp to the Create () method (to return
	a FtpWebRequest instance).
	
2005-11-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HttpListenerTest.cs: disable 2 tests. We're throwing the wrong
	exception.

2005-11-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* IPAddressTest.cs: more tests for the byte[] ctor.

2005-11-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HttpListenerPrefixCollectionTest.cs:
	* HttpListenerTest.cs:
	* HttpListenerBasicIdentityTest.cs:
	* HttpListener2Test.cs: tests for HttpListener and related classes.

2005-11-15  Sebastien Pouliot  <sebastien@ximian.com>

	* IPAddressTest.cs: Fixed an LoopbackIPv6 test case (missing '[') that
	doesn't work on either MS 1.x or 2.0 (and won't work for long on Mono)

2005-09-22  Sebastien Pouliot  <sebastien@ximian.com>

	* DnsPermissionAttributeTest.cs: Removed *Choice security actions.
	* SocketPermissionAttributeTest.cs: Removed *Choice security actions.
	* WebPermissionAttributeTest.cs: Removed *Choice security actions.

2005-06-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HttpWebRequestTest.cs: added test for a HTTP/1.1 server returning a
	chunked response with out a 'last-chunk' mark.

2005-06-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HttpWebRequestTest.cs: added test for the sslClientStream blocking
	issue.

2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* IPAddressTest.cs: cleanup and added loopback IPv6 test.

2005-05-19  Sebastien Pouliot  <sebastien@ximian.com>

	* DnsCas.cs: New. CAS unit tests for Dns.
	* DnsTest.cs: Fixed the wrong End* method being used in AsyncResolve.
	* FileWebRequestCas.cs: New. CAS unit tests for FileWebRequest.
	* HttpWebRequestCas.cs: New. CAS unit tests for HttpWebRequest.
	* WebRequestTest.cs: Added tests to validate exceptions.

2005-03-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* HttpWebRequestTest.cs: added cookie handling test.

2005-02-01  Zoltan Varga  <vargaz@freemail.hu>

	* HttpWebRequestTest.cs ServicePointManagerTest.cs ServicePointTest.cs:
	Mark some tests with [Caregory ("InetAccess")].

2005-01-28  Nick Drochak  <ndrochak@ieee.org>

	* DnsTest.cs: Pick a URL we can most likely fail against.

2005-01-24  Nick Drochak  <ndrochak@ieee.org>

	* ServicePointManagerTest.cs: Make sure we have some Service Points
	when we try to get one.

2005-01-20  Sebastien Pouliot  <sebastien@ximian.com>

	* ServicePointManagerTest.cs: Add a TearDown method; add setup/teardown
	  logic to (1) record ServicePointManager.MaxServicePointIdleTime, and 
	  (2) set this to 10 milliseconds in setup.  Why?  Because when running the
	  full regression tests, the default timeout of 15 minutes applied, causing
	  the ServicePointManager to be "full" when ServicePointTest is executed.
	  This causes ServicePointTest to generate a failure, as it isn't able to
	  add as many ServicePoints as it expects.  Worse, this failure isn't
	  apparent if you run ServicePointTest individually; it only occurs if it
	  executes *after* ServicePointManagerTest.  Yay Heisenbugs.

2005-01-19  Sebastien Pouliot  <sebastien@ximian.com>

	* WebPermissionAttributeTest.cs: Removed a test for 1.1 as we delay 
	the regex creation (like 2.0) so the exception is also delayed.

2005-01-18  Sebastien Pouliot  <sebastien@ximian.com>

	* IPAddressTest.cs: Some tests may not work if support for IPv6 is
	disabled in machine.config. Tests haven't re-worked to check for
	Socket.SupportsIPv6 to ignore them in this case.

2005-01-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* IPAddressTest.cs: this test fails with a FormatException.

2005-01-10  Nick Drochak  <ndrochak@ieee.org>

	* IPAddressTest.cs: Make tests pass on Fx1.1

2005-01-10  Nick Drochak  <ndrochak@ieee.org>

	* SocketPermissionAttributeTest.cs: Do not run tests on .NET where there
	are bugs in the framework.
	* WebPermissionAttributeTest.cs: Assuming these all pass on Fx2.0, so
	make them pass on 1.1 too.

2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CookieContainerTest.cs: added tests for CookieContainer.

2004-10-10 David Sheldon <dave-mono@earth.li>

	* DnsTest.cs: Updated IP for www.go-mono.com. 

2004-09-10  Sebastien Pouliot  <sebastien@ximian.com>

	* DnsPermissionAttributeTest.cs: New. Unit tests for DnsPermissionAttr.
	* DnsPermissionTest.cs: New. Unit tests for DnsPermission.
	* SocketPermissionAttributeTest.cs: New. Unit tests for 
	SocketPermissionAttribute.
	* WebPermissionAttributeTest.cs: New. Unit tests for WebPermission
	Attribute.

2004-01-02  Nick Drochak  <ndrochak@gol.com>

	* ServicePointManagerTest.cs: Use the nunit v2 paradigm, and stop this
	test from outputting its debug info with WriteLines.
	* ServicePointTest.cs: Make sure MaxServicePoints weren't set to some
	other limit in another test or whatever.  Suppress debug output.

2003-12-30  Nick Drochak  <ndrochak@gol.com>

	* DnsTest.cs: Update with new IP address for www.go-mono.com and make
	test failure output more informative. All Tests pass for me on
	.NET 1.1.
	* HttpWebRequestTest.cs: Get rid of WriteLines and use Asserts to make
	it a proper unit test.

2003-07-16  Peter Williams  <peter@newton.cx>

	* IPAddressTest.cs: #if NET_1_1 for some IPv6 tests that
	rely on some NET_1_1-only features.

2003-07-14  Jerome Laban <jlaban@wanadoo.fr>

	* IPAddressTest.cs: Added IPv6 addresses tests.

2002-09-17  Nick Drochak  <ndrochak@gol.com>

	* ServicePointManagerTest.cs: Convert Console.WriteLine() into a Fail()

2002-05-21  Lawrence Pit <loz@cable.a2000.nl>

	* WebClientTest.cs: added
	* WebProxyTest.cs: more tests

2002-05-20  Lawrence Pit <loz@cable.a2000.nl>

	* ServicePointTest.cs: added
	* ServicePointManagerTest.cs: added
	* WebProxyTest.cs: added
	* AllTests.cs: added the above tests
	* WebHeaderCollection.cs: added TestIndexers.

2002-05-19  Lawrence Pit <loz@cable.a2000.nl>

	* FileWebRequestTest.cs: all the async methods tests to behave the same 
	as in ms.net

2002-05-12  Lawrence Pit <loz@cable.a2000.nl>

	* FileWebRequestTest.cs: added

2002-05-11  Lawrence Pit <loz@cable.a2000.nl>

	* WebRequestTest.cs: added
	* WebHeaderCollectionTest.cs: added

2002-05-09  Lawrence Pit <loz@cable.a2000.nl>

	* Added tests to IPAddressTest.cs
	* Fixed tests in CookieTest.cs, SocketPermissionsTest.cs, IPEndPointTest.cs

2002-05-05  Lawrence Pit <loz@cable.a2000.nl>

	* CredentialCacheTest.cs: added
	* AllTests.cs: added CredentialCacheTest

2002-05-05  Lawrence Pit <loz@cable.a2000.nl>

	* IPAddressTest.cs: added test for loopback

2002-04-30  Nick Drochak  <ndrochak@gol.com>

	* IPAddressTest.cs: Remove unused code to eliminate compiler warnings.

2002-04-27  Lawrence Pit <loz@cable.a2000.nl>

	* CookieTest.cs: added
	* CookieCollectionTest.cs: added
	* AllTests.cs: added

2002-04-24  Nick Drochak  <ndrochak@gol.com>

	* IPAddressTest.cs: Make test conform to MS behavior. Also, if wrong 
	exception is thrown, let eveyone know which one.

2002-04-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* IPAddressTest.cs: use BitConverter to set localhost, catch
	OverflowException in TestParseWrong() and changed some constants.

2002-04-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* AllTests.cs: added IPEndPointTest.
	* IPEndPointTest.cs: added file (author: Lawrence Pit).
	* IPAdressTest.cs: use Fail is expected exception are not raised.

2002-04-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* IPAddressTest.cs: use System.BitConverter.IsLittleEndian (suggested
	by Paolo) instead of guessing the endianness.
	
2002-04-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ChangeLog:
	* AllTests.cs:
	* IPAddressTest.cs: added files.