We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 139d47c commit ad964f7Copy full SHA for ad964f7
README.md
@@ -2,9 +2,19 @@
2
3
A small library that provides helper functions to work with [Mockito](https://github.com/mockito/mockito) in Kotlin.
4
5
-## Download
6
-
7
-Download a .jar file from the [releases page](https://github.com/nhaarman/mockito-kotlin/releases).
+## Install
+
+Mockito-Kotlin is available on JCenter.
8
+For Gradle users, add the following to your `build.gradle`:
9
10
+```groovy
11
+repositories {
12
+ jcenter()
13
+}
14
+dependencies {
15
+ testCompile "com.nhaarman:mockito-kotlin:x.x.x"
16
17
+```
18
19
## Examples
20
0 commit comments