Testing with Gradle Java Plugin: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 10: Line 10:


Testing is performed by the "[[Gradle_Java_Plugin#tes|test]]" task (implemented by [https://docs.gradle.org/current/dsl/org.gradle.api.tasks.testing.Test.html Test]), which automatically detects and executes all unit tests in the test source set and generates a report once test execution is complete. JUnit and TestNG are both supported.
Testing is performed by the "[[Gradle_Java_Plugin#tes|test]]" task (implemented by [https://docs.gradle.org/current/dsl/org.gradle.api.tasks.testing.Test.html Test]), which automatically detects and executes all unit tests in the test source set and generates a report once test execution is complete. JUnit and TestNG are both supported.
<font color=darkgray>TODO process https://docs.gradle.org/current/userguide/java_testing.html</font>

Revision as of 21:45, 25 October 2018

External

Internal

Overview

Testing is performed by the "test" task (implemented by Test), which automatically detects and executes all unit tests in the test source set and generates a report once test execution is complete. JUnit and TestNG are both supported.

TODO process https://docs.gradle.org/current/userguide/java_testing.html