1 package org.testng; 2 3 import java.io.Serializable; 4 5 6 /** 7 * This class represents the result of a suite run. 8 * 9 * @author Cedric Beust, Aug 6, 2004 10 * 11 */ 12 public interface ISuiteResult extends Serializable { 13 14 /** 15 * @return The name of the property file for these tests. 16 */ getPropertyFileName()17 public String getPropertyFileName(); 18 19 /** 20 * @return The testing context for these tests. 21 */ getTestContext()22 public ITestContext getTestContext(); 23 24 } 25