Skip to content

Instantly share code, notes, and snippets.

@yusufcakal
Created August 16, 2020 13:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yusufcakal/9dd38a6274499af16e93904580a084fe to your computer and use it in GitHub Desktop.
Save yusufcakal/9dd38a6274499af16e93904580a084fe to your computer and use it in GitHub Desktop.
Junit and Mockito Dependencies
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito-core.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment