Home | History | Annotate | Download | only in testng
      1 package org.testng;
      2 
      3 import java.io.Serializable;
      4 import java.util.List;
      5 
      6 
      7 /**
      8  * This class is used by Reporter to store the extra output to be later
      9  * included in the HTML report:
     10  * - User-generated report
     11  * - Parameter info
     12  *
     13  * Created on Feb 16, 2006
     14  * @author <a href="mailto:cedric (at) beust.com">Cedric Beust</a>
     15  */
     16 public interface IExtraOutput extends Serializable {
     17 
     18   /**
     19    * @return a List<String> representing the parameters passed
     20    * to this test method, or an empty List if no parameters were used.
     21    */
     22   public List<String> getParameterOutput();
     23 
     24 }
     25