DATACMNS-1483 - Migrate Kotlin tests to Mockk.

Original pull request: #338.
This commit is contained in:
Sebastien Deleuze
2019-02-19 11:23:01 +01:00
committed by Mark Paluch
parent d024a3ea12
commit 925b0a1f75
4 changed files with 64 additions and 70 deletions

20
pom.xml
View File

@@ -270,24 +270,10 @@
</dependency>
<dependency>
<groupId>com.nhaarman</groupId>
<artifactId>mockito-kotlin</artifactId>
<version>1.5.0</version>
<groupId>io.mockk</groupId>
<artifactId>mockk</artifactId>
<version>1.9.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
</exclusion>
<exclusion>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
</exclusion>
<exclusion>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Scala -->