Class MDCFeature

java.lang.Object
org.nuxeo.runtime.test.runner.MDCFeature
All Implemented Interfaces:
RunnerFeature

public class MDCFeature extends Object implements RunnerFeature
  • Field Details

  • Constructor Details

    • MDCFeature

      public MDCFeature()
  • Method Details

    • initialize

      public void initialize(FeaturesRunner runner)
      Description copied from interface: RunnerFeature
      Called when preparing to run the test class. Framework is not started at this point. Here is time for the feature to configure the runner from annotations on the test class.
      Specified by:
      initialize in interface RunnerFeature
    • configure

      public void configure(FeaturesRunner runner, com.google.inject.Binder binder)
      Description copied from interface: RunnerFeature
      Configures Guice bindings if any is required by the feature. This is called after the framework is started and before Guice module is built. The tests are launched after guice module is built.
      Specified by:
      configure in interface RunnerFeature
    • beforeRun

      public void beforeRun(FeaturesRunner runner)
      Description copied from interface: RunnerFeature
      Before running tests. At this point Guice modules are registered and injector created.
      Specified by:
      beforeRun in interface RunnerFeature
    • afterRun

      public void afterRun(FeaturesRunner runner)
      Description copied from interface: RunnerFeature
      After tests were run.
      Specified by:
      afterRun in interface RunnerFeature
    • start

      public void start(FeaturesRunner runner)
      Description copied from interface: RunnerFeature
      Features are initialized. Runner is ready to create the injector.
      Specified by:
      start in interface RunnerFeature
    • testCreated

      public void testCreated(Object test)
      Description copied from interface: RunnerFeature
      Notification that a test instance was created. Can be used by features to make custom injection or other preparation of the test instance.
      Specified by:
      testCreated in interface RunnerFeature
    • stop

      public void stop(FeaturesRunner runner)
      Description copied from interface: RunnerFeature
      Before exiting the test.
      Specified by:
      stop in interface RunnerFeature
    • beforeSetup

      public void beforeSetup(FeaturesRunner runner, org.junit.runners.model.FrameworkMethod method, Object test)
      Description copied from interface: RunnerFeature
      Before entering in the @Before methods
      Specified by:
      beforeSetup in interface RunnerFeature
    • afterTeardown

      public void afterTeardown(FeaturesRunner runner, org.junit.runners.model.FrameworkMethod method, Object test)
      Description copied from interface: RunnerFeature
      After the call of the @After methods
      Specified by:
      afterTeardown in interface RunnerFeature
    • beforeMethodRun

      public void beforeMethodRun(FeaturesRunner runner, org.junit.runners.model.FrameworkMethod method, Object test)
      Description copied from interface: RunnerFeature
      Before a test method is invoked.
      Specified by:
      beforeMethodRun in interface RunnerFeature
    • afterMethodRun

      public void afterMethodRun(FeaturesRunner runner, org.junit.runners.model.FrameworkMethod method, Object test)
      Description copied from interface: RunnerFeature
      After a test method was ran.
      Specified by:
      afterMethodRun in interface RunnerFeature