1 16 17 package org.apache.commons.configuration; 18 19 import java.io.File ; 20 21 26 public class TestNonStringProperties extends BaseNonStringProperties 27 { 28 29 private String testProperties = new File ("conf/test.properties").getAbsolutePath(); 30 31 public void setUp() throws Exception  32 { 33 conf = new PropertiesConfiguration(testProperties); 34 nonStringTestHolder.setConfiguration(conf); 35 } 36 37 } 38 | Popular Tags |