01: package test.tck.msgflow.callflows.refer;
02:
03: public class TcpReferTest extends AbstractReferTestCase {
04: boolean myFlag;
05:
06: public void setUp() throws Exception {
07: // these flags determine
08: // which SIP Stack (RI vs TI) is
09: // Shootist and which one is Shootme
10: // the following setup code flips the roles before each test is run
11: testedImplFlag = !myFlag;
12: myFlag = !testedImplFlag;
13: super .transport = "tcp";
14: super .setUp();
15: }
16:
17: public void testRefer() {
18: this .referrer.sendRefer();
19: }
20:
21: public void testRefer2() {
22: this.referrer.sendRefer();
23: }
24: }
|