01: package test.tck.msgflow.callflows.forkedinvite;
02:
03: public class ForkedInviteTest extends AbstractForkedInviteTestCase {
04: boolean myFlag;
05:
06: public void setUp() {
07: super .testedImplFlag = !myFlag;
08: myFlag = !super .testedImplFlag;
09: super .transport = "udp";
10: super .setUp();
11: }
12:
13: public void testForkedInvite() {
14: this.shootist.sendInvite();
15: }
16:
17: }
|