Package org.gradle.api.tasks.testing
Interface JUnitXmlReport
-
- All Superinterfaces:
org.gradle.util.Configurable<Report>
,ConfigurableReport
,DirectoryReport
,Report
,Serializable
public interface JUnitXmlReport extends DirectoryReport
The JUnit XML files, commonly used to communicate results to CI servers.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.gradle.api.reporting.Report
Report.OutputType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isOutputPerTestCase()
Should the output be associated with individual test cases instead of at the suite level.void
setOutputPerTestCase(boolean outputPerTestCase)
Should the output be associated with individual test cases instead of at the suite level.-
Methods inherited from interface org.gradle.api.reporting.ConfigurableReport
setDestination, setDestination, setDestination, setEnabled, setEnabled
-
Methods inherited from interface org.gradle.api.reporting.DirectoryReport
getDestination, getEntryPoint, getOutputType
-
Methods inherited from interface org.gradle.api.reporting.Report
getDisplayName, getName, isEnabled
-
-
-
-
Method Detail
-
isOutputPerTestCase
@Incubating @Input boolean isOutputPerTestCase()
Should the output be associated with individual test cases instead of at the suite level.
-
setOutputPerTestCase
@Incubating void setOutputPerTestCase(boolean outputPerTestCase)
Should the output be associated with individual test cases instead of at the suite level.
-
-