All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testng.asserts.IAssertLifecycle Maven / Gradle / Ivy

There is a newer version: 7.10.2
Show newest version
package org.testng.asserts;

/** Life cycle methods for the assertion class. */
public interface IAssertLifecycle {
  /**
   * Run the assert command in parameter.
   *
   * @param assertCommand The assertion
   */
  void executeAssert(IAssert assertCommand);

  /**
   * Invoked when an assert succeeds.
   *
   * @param assertCommand The assertion
   */
  void onAssertSuccess(IAssert assertCommand);

  /**
   * Invoked when an assert fails.
   *
   * @param assertCommand The assertion
   * @param ex The error
   */
  void onAssertFailure(IAssert assertCommand, AssertionError ex);

  /**
   * Invoked before an assert is run.
   *
   * @param assertCommand The assertion
   */
  void onBeforeAssert(IAssert assertCommand);

  /**
   * Invoked after an assert is run.
   *
   * @param assertCommand The assertion
   */
  void onAfterAssert(IAssert assertCommand);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy