diff options
Diffstat (limited to 'tunnel/build.gradle')
-rw-r--r-- | tunnel/build.gradle | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tunnel/build.gradle b/tunnel/build.gradle index 6a2e1c0e..f306292c 100644 --- a/tunnel/build.gradle +++ b/tunnel/build.gradle @@ -21,6 +21,11 @@ android { path 'tools/CMakeLists.txt' } } + testOptions.unitTests.all { + testLogging { + events 'passed', 'skipped', 'failed', 'standardOut', 'standardError' + } + } } dependencies { @@ -30,6 +35,7 @@ dependencies { implementation "com.google.code.findbugs:jsr305:$jsr305Version" implementation "com.jakewharton.threetenabp:threetenabp:$threetenabpVersion" implementation "net.i2p.crypto:eddsa:$eddsaVersion" + testImplementation "junit:junit:$junitVersion" } apply from: "publish.gradle" |