Watcher (unitests)

- Renamed
This commit is contained in:
Tristan B. Velloza Kildaire 2023-11-26 19:27:04 +02:00
parent 8ac7a5485c
commit 815e411e64
1 changed files with 6 additions and 6 deletions

View File

@ -308,15 +308,15 @@ unittest
}
/**
* Setup a server which dies (kills its connection to us)
* midway whilst we are doing a `dequeue()`
* Setup a `Manager` and then block on a `dequeue()`
* but from another thread shutdown the `Manager`.
*
* This is to test the exception triggering mechanism
* for such a case
*/
unittest
{
writeln("<<<<< Test 4 start >>>>>");
writeln("<<<<< Test 3 start >>>>>");
Address serverAddress = parseAddress("::1", 0);
Socket server = new Socket(AddressFamily.INET6, SocketType.STREAM, ProtocolType.TCP);
@ -424,15 +424,15 @@ unittest
}
/**
* Setup a `Manager` and then block on a `dequeue()`
* but from another thread shutdown the `Manager`.
* Setup a server which dies (kills its connection to us)
* midway whilst we are doing a `dequeue()`
*
* This is to test the exception triggering mechanism
* for such a case
*/
unittest
{
writeln("<<<<< Test 3 start >>>>>");
writeln("<<<<< Test 4 start >>>>>");
Address serverAddress = parseAddress("::1", 0);
Socket server = new Socket(AddressFamily.INET6, SocketType.STREAM, ProtocolType.TCP);