Lines Matching +full:mockito +full:- +full:kotlin
1 # Mockito-Kotlin chapter
2 …-badges.herokuapp.com/maven-central/org.mockito.kotlin/mockito-kotlin/badge.svg) ](https://maven-b…
3 …mockito.kotlin/mockito-kotlin?server=https%3A%2F%2Fs01.oss.sonatype.org%2F)](https://s01.oss.sonat…
5 …ary that provides helper functions to work with [Mockito](https://github.com/mockito/mockito) in K…
9 Mockito-Kotlin is available on Maven Central.
13 testImplementation "org.mockito.kotlin:mockito-kotlin:x.x.x"
18 A test using Mockito-Kotlin typically looks like the following:
20 ```kotlin
37 For more info and samples, see the [Wiki](https://github.com/mockito/mockito-kotlin/wiki).
41 Mockito-Kotlin is built with Gradle.
43 - `./gradlew build` builds and tests the project
44 - `./gradlew publishToMavenLocal` installs the maven artifacts in your local repository
45 - `./gradlew check` runs the test suite (See Testing below)
49 Mockito-Kotlin roughly follows SEMVER
53 Mockito-Kotlin's test suite is located in a separate `tests` module,
54 to allow running the tests using several Kotlin versions whilst still
57 - `./gradlew check` runs the checks including tests.
59 Usually it is enough to test only using the default Kotlin versions;
61 If you want to test using a different Kotlin version locally, set
66 …mockito-kotlin` was created and developed by [nhaarman@](https://github.com/nhaarman) after which …
67 …o thank Niek for the original idea and extensive work plus support that went into `mockito-kotlin`.