01: /**
02: *
03: */package examples.cancel;
04:
05: /**
06: * @author M. Ranganathan
07: *
08: */
09: public class TestCancel extends AbstractCancelTest {
10:
11: public TestCancel() {
12: super ();
13: }
14:
15: public void testCancelNoDelay() throws Exception {
16: Shootist.sendDelayedCancel = false;
17: shootist.sendInvite();
18: Thread.sleep(5000);
19: shootist.checkState();
20:
21: }
22: }
|