1
2
3
4
5
6
7
8
9
10
11 package org.mule.config.spring.parsers.assembly;
12
13 import org.mule.config.spring.parsers.assembly.configuration.PropertyConfiguration;
14 import org.mule.config.spring.parsers.assembly.configuration.SimplePropertyConfiguration;
15
16 public class SimplePropertyConfigurationTestCase extends AbstractBasePropertyConfigurationTestCase
17 {
18
19 public static final String SIMPLE = "simple";
20
21 public void testSimple()
22 {
23 PropertyConfiguration config = new SimplePropertyConfiguration();
24 setTestValues(SIMPLE, config);
25 verifyTestValues(SIMPLE, config);
26 verifyIgnored(SIMPLE, config);
27 }
28
29 }