Package org.powermock.tests.utils
Interface TestChunk
-
- All Known Implementing Classes:
TestChunkImpl
public interface TestChunk
A test chunk consists of a list of methods that should be executed by a particular classloader.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ClassLoader
getClassLoader()
java.util.List<java.lang.reflect.Method>
getTestMethodsToBeExecutedByThisClassloader()
boolean
isMethodToBeExecutedByThisClassloader(java.lang.reflect.Method method)
-
-
-
Method Detail
-
getClassLoader
java.lang.ClassLoader getClassLoader()
-
getTestMethodsToBeExecutedByThisClassloader
java.util.List<java.lang.reflect.Method> getTestMethodsToBeExecutedByThisClassloader()
-
isMethodToBeExecutedByThisClassloader
boolean isMethodToBeExecutedByThisClassloader(java.lang.reflect.Method method)
-
-