Skip to content

Commit 7787e18

Browse files
authored
reduce mocking, remove wildcard imports, and use fluent assertions (#357)
* reduce mocking, remove wildcard imports, and use fluent assertions * better test output, fix leaky state
1 parent 4f05e28 commit 7787e18

File tree

5 files changed

+311
-216
lines changed

5 files changed

+311
-216
lines changed

sample/android/app/build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,20 @@ android {
117117
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
118118
}
119119
}
120+
121+
testOptions {
122+
unitTests {
123+
all {
124+
testLogging {
125+
events "failed", "skipped"
126+
exceptionFormat "full"
127+
showExceptions true
128+
showCauses true
129+
showStackTraces true
130+
}
131+
}
132+
}
133+
}
120134
}
121135

122136
dependencies {

0 commit comments

Comments
 (0)