1 9 package org.picocontainer.gems.util; 10 11 import java.util.Properties ; 12 13 import junit.framework.TestCase; 14 18 public class ConstructablePropertiesTest extends TestCase { 19 20 public void testPropertiesLoading() throws Exception { 21 22 Properties properties = new ConstructableProperties("test.properties"); 23 assertNotNull(properties); 24 assertEquals("bar", properties.getProperty("foo")); 25 } 26 } | Popular Tags |