package org.testng.asserts;

Life cycle methods for the assertion class.
/** * Life cycle methods for the assertion class. */
public interface IAssertLifecycle {
Run the assert command in parameter.
/** * Run the assert command in parameter. */
void executeAssert(IAssert<?> assertCommand);
Invoked when an assert succeeds.
/** * Invoked when an assert succeeds. */
void onAssertSuccess(IAssert<?> assertCommand);
Invoked when an assert fails.
Deprecated:use onAssertFailure(IAssert assertCommand, AssertionError ex) instead of.
/** * Invoked when an assert fails. * * @deprecated use onAssertFailure(IAssert assertCommand, AssertionError ex) instead of. */
void onAssertFailure(IAssert<?> assertCommand);
Invoked when an assert fails.
/** * Invoked when an assert fails. * */
void onAssertFailure(IAssert<?> assertCommand, AssertionError ex);
Invoked before an assert is run.
/** * Invoked before an assert is run. */
void onBeforeAssert(IAssert<?> assertCommand);
Invoked after an assert is run.
/** * Invoked after an assert is run. */
void onAfterAssert(IAssert<?> assertCommand); }