Interface EUnitTestListener

All Known Implementing Classes:
EUnitRunnerView, EUnitTask, EUnitTestRunner.JUnitEUnitTestListener, ShowEUnitViewTestListener

public interface EUnitTestListener
Simple interface for objects which receive notifications regarding the progress of a test suite.
Version:
1.0
Author:
Antonio García-Domínguez
  • Field Details

  • Method Details

    • beforeCase

      void beforeCase(EUnitModule module, EUnitTest test)
      Notification sent before running a test case.
      Parameters:
      module - EUnit module under execution.
      test - Description of the test case: its result has not been set yet.
    • afterCase

      void afterCase(EUnitModule module, EUnitTest test)
      Notification sent after running a test case.
      Parameters:
      module - EUnit module under execution.
      test - Test case, with its result set.