Technology Consulting
Return to: Gradle Reference

Add Output Logging for all JUnit Tests

How to configure JUnit to output successful test results

Modify or add the testLogging closure in the test closure:

test {
    useJUnitPlatform()

    testLogging {
        events "PASSED", "SKIPPED", "FAILED", "STANDARD_OUT"
    }
}
Return to: Gradle Reference