Home | History | Annotate | Download | only in internal
      1 package org.testng.internal;
      2 
      3 import org.testng.IExtraOutput;
      4 import org.testng.collections.Lists;
      5 
      6 import java.util.List;
      7 
      8 /**
      9  * This class is used by Reporter to store the extra output to be later
     10  * included in the HTML report:
     11  * - User-generated report
     12  * - Parameter info
     13  *
     14  * Created on Feb 16, 2006
     15  * @author <a href="mailto:cedric (at) beust.com">Cedric Beust</a>
     16  */
     17 public class ExtraOutput implements IExtraOutput {
     18   /**
     19    *
     20    */
     21   private static final long serialVersionUID = 8195388419611912192L;
     22   private List<String> m_parameterOutput = Lists.newArrayList();
     23 
     24   @Override
     25   public List<String> getParameterOutput() {
     26     return m_parameterOutput;
     27   }
     28 }
     29