* Set up instance variables required by this test case.
*/
@Before
public void setUp() throws Exception
{
Configuration configuration = createConfiguration();
for (int i = 0; i < properties.length; i++)
{
configuration.setProperty(properties[i], values[i]);
}
for (int element : intArray) {
configuration.addProperty("intIndexed", new Integer(element));
}
for (String element : stringArray) {
configuration.addProperty("stringIndexed", element);
}
List<String> list = Arrays.asList(stringArray);
configuration.addProperty("listIndexed", list);
bean = new ConfigurationDynaBean(configuration);
bean.set("listIndexed", list);
bean.set("intArray", intArray);