Interface IAssertLifecycle

    • Method Detail

      • executeAssert

        void executeAssert​(IAssert<?> assertCommand)
        Run the assert command in parameter.
        Parameters:
        assertCommand - The assertion
      • onAssertSuccess

        void onAssertSuccess​(IAssert<?> assertCommand)
        Invoked when an assert succeeds.
        Parameters:
        assertCommand - The assertion
      • onAssertFailure

        void onAssertFailure​(IAssert<?> assertCommand,
                             java.lang.AssertionError ex)
        Invoked when an assert fails.
        Parameters:
        assertCommand - The assertion
        ex - The error
      • onBeforeAssert

        void onBeforeAssert​(IAssert<?> assertCommand)
        Invoked before an assert is run.
        Parameters:
        assertCommand - The assertion
      • onAfterAssert

        void onAfterAssert​(IAssert<?> assertCommand)
        Invoked after an assert is run.
        Parameters:
        assertCommand - The assertion