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
|
2006-11-24 Dick Porter <dick@ximian.com>
* SocketTest.cs: Add a test for async non blocking connects that
should fail, leaving Socket.Connected == false. Based on test
case in bug 79878.
2005-09-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* SocketTest.cs: added a bunch of tests expecting
ObjectDisposedException to be thrown.
2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* SocketTest.cs: added new test for Select.
2005-06-04 Gert Driesen <drieseng@users.sourceforge.net>
* SocketTest.cs: added test for bug #75158 (incompatible address).
2005-06-04 Gert Driesen <drieseng@users.sourceforge.net>
* SocketTest.cs: use IPAddress.Loopback in IPEndPoint to allow
AcceptBlockingStatus test to pass on both Mono and MS.NET.
2005-06-04 Gert Driesen <drieseng@users.sourceforge.net>
* SocketTest.cs: added test for bug #75154.
2005-06-04 Gert Driesen <drieseng@users.sourceforge.net>
* TcpListenerTest.cs: remove NotDotNet category from TcpListener
test as its working just fine on both MS.NET 1.x and 2.0.
2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* TcpListenerTest.cs: actually connect the socket to the listener. Fixes
the test.
2005-05-20 Sebastien Pouliot <sebastien@ximian.com>
* NetworkStreamCas.cs: New. CAS unit tests for NetworkStream.
* SocketCas.cs: New. CAS unit tests for Socket.
* SocketTest.cs: Make some fields public so they can be reused.
* TcpClientCas.cs: New. CAS unit tests for TcpClient (currently
commented as the Begin* methods aren't yet implemented).
2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* SocketTest.cs: added test for setting a boolean socket option.
2005-03-06 Nick Drochak <ndrochak@ieee.org>
* TcpClientTest.cs: Choose a different port so test will pass on MS.NET
* TcpListenerTest.cs: Ignore test that doesn't play well on MS.NET
2005-02-23 Dick Porter <dick@ximian.com>
* UdpClientTest.cs: Added, with UdpClientBroadcastTest from Chris
Bacon <chris.bacon@docobo.co.uk>
2005-02-01 Zoltan Varga <vargaz@freemail.hu>
* SocketTest.cs: Mark some tests with [Category ("InetAccess")].
2005-01-08 Nick Drochak <ndrochak@ieee.org>
* SocketTest.cs: Ignore test on MS.NET
2004-10-14 Dick Porter <dick@ximian.com>
* SocketTest.cs: Test the blocking status of accepted sockets
2004-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* SocketTest.cs: added test for Select with empty lists. Changed the
'bogus' address of EndConnect test.
2003-12-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* SocketTest.cs: new test for asynchronous connection failure.
Test by Brad FitzpatrickBrad Fitzpatrick <brad@danga.com>.
2003-08-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* TcpListenerTest.cs: added more tests.
2003-07-16 Peter Williams <peter@newton.cx>
* TcpListenerTest.cs: Initialize outSock to null to
prevent an mcs compile error.
2003-07-14 Jerome Laban <jlaban@wanadoo.fr>
* TcpListenerTest.cs: Forced IPv4 listener test.
2002-11-03 Phillip Pearson <pp@myelin.co.nz>
* AllTests.cs: Fixed Lawrence's e-mail address.
2002-05-17 Lawrence Pit <loz@cable.a2000.nl>
* AllTests.cs: added
|