Skip to content

Instantly share code, notes, and snippets.

@forketyfork
Created April 21, 2020 06:20
Show Gist options
  • Save forketyfork/eb760099a70e221e89bb4aef8d8eac44 to your computer and use it in GitHub Desktop.
Save forketyfork/eb760099a70e221e89bb4aef8d8eac44 to your computer and use it in GitHub Desktop.
JUnit 5 with Records - Maven setup
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment