1 19 package org.enhydra.zeus; 20 21 import junit.framework.Test; 22 import junit.framework.TestCase; 23 import junit.framework.TestSuite; 24 25 33 public abstract class AbstractBinderTest extends TestCase { 34 35 42 public abstract Binder createBinder(); 43 44 51 public AbstractBinderTest(String name) { 52 super(name); 53 } 54 55 64 public static Test suite() { 65 return new TestSuite(AbstractBinderTest.class); 66 } 67 } 68 | Popular Tags |