org.testng.reporters.IBuffer 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.reporters;
import java.io.Writer;
public interface IBuffer {
IBuffer append(CharSequence string);
void toWriter(Writer fw);
}