Channel channel =
channelService.createChannel(
"x", null, Delivery.RELIABLE);
dataService.removeObject(channel);
try {
channel.join(client.getSession());
fail("Expected IllegalStateException");
} catch (IllegalStateException e) {
System.err.println(e);
}
}