Package org.testng.xml

Source Code of org.testng.xml.XmlRun

package org.testng.xml;

import static org.testng.collections.CollectionUtils.hasElements;

import org.testng.collections.Lists;
import org.testng.reporters.XMLStringBuffer;
import org.testng.xml.dom.OnElement;

import java.util.List;

public class XmlRun {

  public String toXml(String indent) {
    XMLStringBuffer xsb = new XMLStringBuffer(indent);
    boolean hasElements = hasElements(m_excludes) || hasElements(m_includes);
    if (hasElements) {
      xsb.push("run");
    }
    for (String s : m_includes) {
      xsb.addEmptyElement("include", "name", s);
    }
    for (String s : m_excludes) {
      xsb.addEmptyElement("exclude", "name", s);
    }
    if (hasElements) {
      xsb.pop("run");
    }

    return xsb.toXML();
  }

  private List<String> m_excludes = Lists.newArrayList();

  public List<String> getExcludes() {
    return m_excludes;
  }

  @OnElement(tag = "exclude", attributes = "name")
  public void onExclude(String name) {
    m_excludes.add(name);
  }

  private List<String> m_includes = Lists.newArrayList();

  public List<String> getIncludes() {
    return m_includes;
  }

  @OnElement(tag = "include", attributes = "name")
  public void onInclude(String name) {
    m_includes.add(name);
  }
}
TOP

Related Classes of org.testng.xml.XmlRun

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.