1 26 27 package net.sourceforge.groboutils.junit.v1.parser; 28 29 import java.lang.reflect.Method ; 30 import java.lang.reflect.InvocationTargetException ; 31 32 import junit.framework.Test; 33 34 35 45 public interface ITestCreator 46 { 47 60 public Test createTest( Class theClass, Method method ) 61 throws InstantiationException , NoSuchMethodException , 62 InvocationTargetException , IllegalAccessException , 63 ClassCastException ; 64 65 72 public boolean canCreate( Class theClass ); 73 } 74 75 | Popular Tags |