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

org.testng.IExecutionVisualiser Maven / Gradle / Ivy

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

/**
 * A TestNG listener that can be used to build graph representations of TestNG methods as and when
 * they are being executed on a real-time basis.
 */
public interface IExecutionVisualiser extends ITestNGListener {
  /**
   * @param dotDefinition - A DOT
   *     representation of the Directed Acyclic Graph that TestNG builds internally to represent its
   *     tests.
   */
  void consumeDotDefinition(String dotDefinition);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy