1
2
3
4
5
6
7
8
9
10
11 package org.mule.test.construct;
12
13 import java.util.Arrays;
14 import java.util.Collection;
15
16 import org.junit.runners.Parameterized.Parameters;
17
18
19
20
21 public class RemoteDispatcherXmlTestCase extends RemoteDispatcherTestCase
22 {
23 public RemoteDispatcherXmlTestCase(ConfigVariant variant, String configResources)
24 {
25 super(variant, configResources);
26
27 }
28
29 @Parameters
30 public static Collection<Object[]> parameters()
31 {
32 return Arrays.asList(new Object[][]{{ConfigVariant.SERVICE,
33 "org/mule/test/construct/remote-dispatcher-xml.xml"}
34
35 });
36 }
37 }