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

org.testng.ISuiteResult Maven / Gradle / Ivy

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

import java.io.Serializable;


/**
 * This class represents the result of a suite run.
 *
 * @author Cedric Beust, Aug 6, 2004
 *
 */
public interface ISuiteResult extends Serializable {

  /**
   * @return The name of the property file for these tests.
   */
  public String getPropertyFileName();

  /**
   * @return The testing context for these tests.
   */
  public ITestContext getTestContext();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy