1
2
3
4
5
6
7
8
9
10
11 package org.mule.test.integration.transformer.response;
12
13 import org.mule.tck.junit4.FunctionalTestCase;
14 import org.mule.tck.junit4.rule.DynamicPort;
15
16 import org.junit.Rule;
17 import org.junit.Test;
18
19 public class ResponseTransformerScenariosTestCase extends FunctionalTestCase
20 {
21
22 @Rule
23 public DynamicPort dynamicPort1 = new DynamicPort("port1");
24
25 @Rule
26 public DynamicPort dynamicPort2 = new DynamicPort("port2");
27
28 @Rule
29 public DynamicPort dynamicPort3 = new DynamicPort("port3");
30
31 @Rule
32 public DynamicPort dynamicPort4 = new DynamicPort("port4");
33
34 public ResponseTransformerScenariosTestCase()
35 {
36 setDisposeContextPerClass(true);
37 }
38
39 @Override
40 protected String getConfigResources()
41 {
42 return "org/mule/test/integration/transformer/response/response-transformer-scenarios.xml";
43 }
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63 @Test
64 public void testDummy()
65 {
66 }
67
68 }