Interface PowerMockTestNotifier

  • All Known Implementing Classes:
    PowerMockTestNotifierImpl

    public interface PowerMockTestNotifier
    Implementors of this interface that must provide the ability to notify PowerMock test listeners with the events as specified by the methods declared in this interface.
    • Method Detail

      • notifyBeforeTestMethod

        void notifyBeforeTestMethod​(Object testInstance,
                                    Method testMethod,
                                    Object[] arguments)
        Notifies all listeners with the "before test method started" event.
      • notifyAfterTestMethod

        void notifyAfterTestMethod​(Object testInstance,
                                   Method method,
                                   Object[] arguments,
                                   TestMethodResult testResult)
        Notifies all listeners with the "after test method ended" event.
      • notifyBeforeTestSuiteStarted

        void notifyBeforeTestSuiteStarted​(Class<?> testClass,
                                          Method[] testMethods)
        Notifies all listeners with the "before test suite started" event.
      • notifyAfterTestSuiteEnded

        void notifyAfterTestSuiteEnded​(Class<?> testClass,
                                       Method[] methods,
                                       TestSuiteResult testResult)
        Notifies all listeners with the "after test suite ended" event.