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