Uses of Class
org.junit.runners.model.FrameworkMethod

Packages that use FrameworkMethod
org.junit.experimental.theories   
org.junit.internal.runners.statements   
org.junit.rules   
org.junit.runners.model   
 

Uses of FrameworkMethod in org.junit.experimental.theories
 

Methods in org.junit.experimental.theories with parameters of type FrameworkMethod
 Statement Theories.methodBlock(FrameworkMethod method)
           
 

Constructors in org.junit.experimental.theories with parameters of type FrameworkMethod
Theories.TheoryAnchor(FrameworkMethod method)
           
 

Uses of FrameworkMethod in org.junit.internal.runners.statements
 

Constructors in org.junit.internal.runners.statements with parameters of type FrameworkMethod
InvokeMethod(FrameworkMethod testMethod, Object target)
           
 

Constructor parameters in org.junit.internal.runners.statements with type arguments of type FrameworkMethod
RunAfters(Statement next, List<FrameworkMethod> afters, Object target)
           
RunBefores(Statement next, List<FrameworkMethod> befores, Object target)
           
 

Uses of FrameworkMethod in org.junit.rules
 

Methods in org.junit.rules with parameters of type FrameworkMethod
 Statement Verifier.apply(Statement base, FrameworkMethod method, Object target)
           
 Statement Timeout.apply(Statement base, FrameworkMethod method, Object target)
           
 Statement TestWatchman.apply(Statement base, FrameworkMethod method, Object target)
           
 Statement MethodRule.apply(Statement base, FrameworkMethod method, Object target)
          Modifies the method-running Statement to implement an additional test-running rule.
 Statement ExternalResource.apply(Statement base, FrameworkMethod method, Object target)
           
 Statement ExpectedException.apply(Statement base, FrameworkMethod method, Object target)
           
 void TestWatchman.failed(Throwable e, FrameworkMethod method)
          Invoked when a test method fails
 void TestWatchman.finished(FrameworkMethod method)
          Invoked when a test method finishes (whether passing or failing)
 void TestWatchman.starting(FrameworkMethod method)
          Invoked when a test method is about to start
 void TestName.starting(FrameworkMethod method)
           
 void TestWatchman.succeeded(FrameworkMethod method)
          Invoked when a test method succeeds
 

Uses of FrameworkMethod in org.junit.runners.model
 

Methods in org.junit.runners.model that return types with arguments of type FrameworkMethod
 List<FrameworkMethod> TestClass.getAnnotatedMethods(Class<? extends Annotation> annotationClass)
          Returns, efficiently, all the non-overridden methods in this class and its superclasses that are annotated with annotationClass.
 

Methods in org.junit.runners.model with parameters of type FrameworkMethod
 boolean FrameworkMethod.isShadowedBy(FrameworkMethod other)