1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.commons.configuration.beanutils;
18
19 import org.apache.commons.configuration.Configuration;
20 import org.apache.commons.configuration.XMLConfiguration;
21
22 /***
23 * An additional test class for ConfigurationDynaBean. This test class performs
24 * the same tests as the default test class, but uses a XMLConfiguration as
25 * underlying configuration object.
26 *
27 * @author <a
28 * href="http://jakarta.apache.org/commons/configuration/team-list.html">Commons
29 * Configuration team</a>
30 * @version $Id: TestConfigurationDynaBeanXMLConfig.java 469259 2006-10-30 20:22:50Z oheger $
31 */
32 public class TestConfigurationDynaBeanXMLConfig extends
33 TestConfigurationDynaBean
34 {
35 /***
36 * Creates the underlying configuration object. This implementation will
37 * create a XMLConfiguration.
38 * @return the underlying configuration
39 */
40 protected Configuration createConfiguration()
41 {
42 return new XMLConfiguration();
43 }
44 }