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

src.java.test.TestReporter Maven / Gradle / Ivy

There is a newer version: 4.0.6
Show newest version
package test;

import javax.xml.stream.*;

/**
 * Simple XML warning reporter class to used with test classes.
 */
public class TestReporter
    implements XMLReporter
{
    public void report(String msg, String errorType, Object info, Location location)
    {
        System.err.println("\nWARNING("+errorType+"): "+msg+" [at "+location+"]");
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy