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

org.testng.internal.ExtraOutput Maven / Gradle / Ivy

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

import org.testng.IExtraOutput;
import org.testng.collections.Lists;

import java.util.List;

/**
 * This class is used by Reporter to store the extra output to be later
 * included in the HTML report:
 * - User-generated report
 * - Parameter info
 *
 * Created on Feb 16, 2006
 * @author Cedric Beust
 */
public class ExtraOutput implements IExtraOutput {
  /**
   *
   */
  private static final long serialVersionUID = 8195388419611912192L;
  private List m_parameterOutput = Lists.newArrayList();

  @Override
  public List getParameterOutput() {
    return m_parameterOutput;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy