Skip to content

Instantly share code, notes, and snippets.

@matschmann
Last active March 18, 2019 14:20
Show Gist options
  • Save matschmann/deecd513980c38c73a9dbd39c05e13a4 to your computer and use it in GitHub Desktop.
Save matschmann/deecd513980c38c73a9dbd39c05e13a4 to your computer and use it in GitHub Desktop.
Adds Junit5 and assertJ to a gradle project
dependencies {
testImplementation('org.junit.jupiter:junit-jupiter:5.4.1')
testCompile('org.assertj:assertj-core:3.11.1')
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment