View Javadoc

1   /*
2    * $Id: ErrorHandlerTestCase.java 19330 2010-09-03 14:09:36Z dirk.olmes $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
5    *
6    * The software in this package is published under the terms of the CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
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          // empty
37      }
38      
39      // TODO Create a test to copy files from test-data/out to test-data/in
40  }
41  
42