if (!queue.isEmpty())
fail("EventQueue is not empty");
// step 1
final MockClient client1 = god.newClient();
Event ev = queue.take();
DataEvent de = (DataEvent) ev;
assertEquals(EventSource.kBackend, de.source);
Matcher m = god.commandChannel.matcher(de.getString());
if (!m.matches())