1 16 17 package org.apache.commons.logging; 18 19 import junit.framework.*; 20 import java.util.Hashtable ; 21 22 25 public class BadHashtablePropertyTestCase extends TestCase { 26 27 public void testType() { 28 assertTrue(LogFactory.factories instanceof Hashtable ); 29 } 30 31 public void testPutCalled() throws Exception { 32 Log log = LogFactory.getLog(BadHashtablePropertyTestCase.class); 33 } 34 } 35 | Popular Tags |