1 16 package org.apache.commons.collections; 17 18 import java.util.Map ; 19 20 import junit.framework.Test; 21 22 import org.apache.commons.collections.map.AbstractTestMap; 23 24 31 public class TestFastHashMap extends AbstractTestMap { 32 33 public TestFastHashMap(String testName) { 34 super(testName); 35 } 36 37 public static Test suite() { 38 return BulkTest.makeSuite(TestFastHashMap.class); 39 } 40 41 public static void main(String args[]) { 42 String [] testCaseName = { TestFastHashMap.class.getName()}; 43 junit.textui.TestRunner.main(testCaseName); 44 } 45 46 public Map makeEmptyMap() { 47 FastHashMap fhm = new FastHashMap(); 48 fhm.setFast(false); 49 return (fhm); 50 } 51 52 } 53 | Popular Tags |