01: package test.tck.msgflow.callflows.refer;
02:
03: public class UdpReferTest extends AbstractReferTestCase {
04: boolean myFlag;
05:
06: public void setUp() throws Exception {
07: // switch tested stack between the two tests
08: testedImplFlag = !myFlag;
09: myFlag = !testedImplFlag;
10: super .transport = "udp";
11: super .setUp();
12: }
13:
14: public void testRefer() {
15: super .transport = "udp";
16: this .referrer.sendRefer();
17: }
18:
19: public void testRefer2() {
20: this.referrer.sendRefer();
21: }
22: }
|