Test framework dependencies
Tests created by Diffblue Cover make use of a testing framework, namely one of JUnit 4, JUnit Jupiter, or TestNG - these frameworks are included in the required dependencies below. These dependencies are available from the Maven Central Repository. To add it, follow the guide relevant to your build tool.
Maven
Check whether or not the test framework dependencies are already in your Gradle project. If not, follow the instructions below to add it:
Edit the build script (
build.gradle
orbuild.gradle.kts
).Add Maven to the
repositories
section.Add JUnit or TestNG to the
dependencies
section:
For JUnit 4:
For JUnit Jupiter 5:
For TestNG:
Gradle
Check whether or not the test framework dependencies are already in your Gradle project. If not, follow the instructions below to add it:
Edit the build script (
build.gradle
orbuild.gradle.kts
).Add Maven to the
repositories
section.Add JUnit or TestNG to the
dependencies
section:
For JUnit 4:
For JUnit Jupiter 5:
For TestNG:
Run the tests
Choose one of the new test classes in the project explorer, right-click and select 'Run ClassnameTest'
. The IDE will then show the results of the run.
Last updated