1
2
3
4
5
6
7
8
9
10
11 package org.mule.config.spring.parsers;
12
13 public class ConstrainedConnectorExceptionStrategyMule2126TestCase extends AbstractBadConfigTestCase
14 {
15
16 protected String getConfigResources()
17 {
18 return "org/mule/config/spring/parsers/constrained-connector-exception-strategy-mule-2126-test.xml";
19 }
20
21 public void testError() throws Exception
22 {
23 assertErrorContains("Invalid content was found starting with element 'default-connector-exception-strategy'");
24 }
25
26 }