org.testng.xml.IPostProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
package org.testng.xml;
import java.util.Collection;
/** Used by Parser to perform changes on an XML suite after it's been parsed. */
public interface IPostProcessor {
Collection process(Collection suites);
}