de.bechte.junit.runners.context.processing
Interface ChildExecutor<T>

Type Parameters:
T - The type of object that tests get executed by the ChildExecutor.
All Known Implementing Classes:
ContextExecutor, MethodExecutor

public interface ChildExecutor<T>

A ChildExecutor is responsible for executing all tests for the given object. Typically, the ChildExecutor is used together with the ChildResolver.


Method Summary
 void run(org.junit.runners.model.TestClass testClass, T object, org.junit.runner.notification.RunNotifier notifier)
          Runs the given object of type T and informs the RunNotifier about all notifications.
 

Method Detail

run

void run(org.junit.runners.model.TestClass testClass,
         T object,
         org.junit.runner.notification.RunNotifier notifier)
Runs the given object of type T and informs the RunNotifier about all notifications.

Parameters:
testClass - the corresponding TestClass
object - the object of type T
notifier - the RunNotifier to be notified


Copyright © 2015. All rights reserved.