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

io.guixer.maven.SurefireTestReport Maven / Gradle / Ivy

There is a newer version: 0.0.25
Show newest version
package io.guixer.maven;

import net.avcompris.binding.annotation.XPath;

@XPath("/testsuite")
public interface SurefireTestReport {

	@XPath("@tests")
	int getTests();

	@XPath("@errors")
	int getErrors();

	@XPath("@skipped")
	int getSkipped();

	@XPath("@failures")
	int getFailures();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy