// try to send to a detached session
public void testDetached() {
logger.info("Sending to detached client");
try {
t1c.send(new TestMessageOne("TestOne"));
assert false : "Sending to detached channel should throw exception";
} catch (IllegalStateException ise) {
// good
}
}