From cba4059063174922b5e1e0673bd02ede9b98b5d1 Mon Sep 17 00:00:00 2001 From: Borjan Tchakaloff Date: Sun, 31 Mar 2019 16:17:55 +0200 Subject: [PATCH] Require the Mockito library for unit testing --- core/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/core/build.gradle b/core/build.gradle index c68b666d0..65dfa1a7b 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -79,6 +79,7 @@ dependencies { } testImplementation 'junit:junit:4.12' + testImplementation 'org.mockito:mockito-core:1.10.19' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test:rules:1.0.2'