1
2
3
4
5
6
7
8
9
10
11 package org.mule.example.errorhandler;
12
13 import org.mule.tck.FunctionalTestCase;
14 import org.mule.util.SystemUtils;
15
16 import java.util.Properties;
17
18 public class ErrorHandlerTestCase extends FunctionalTestCase
19 {
20 @Override
21 protected Properties getStartUpProperties()
22 {
23 Properties startupProps = new Properties();
24 startupProps.put("app.home", SystemUtils.JAVA_IO_TMPDIR);
25 return startupProps;
26 }
27
28 @Override
29 protected String getConfigResources()
30 {
31 return "mule-config.xml";
32 }
33
34 public void testConfigSanity()
35 {
36
37 }
38
39
40 }
41
42