}
public void processReply(TestReply reply) {
System.err.println("User got reply " + reply);
if (reply instanceof ClientReply) {
ClientReply wtr = (ClientReply) reply;
switch (wtr.getReplyType()) {
case QUIT:
context.sendUIMessage(SimpleTestDirectorMessage.newClientQuitMessage(username));
currentAction = UserActionType.H_QUIT;
break;
case ERROR: