[fenix] Fix CrashReporterService breaking changes

pull/600/head
Arturo Mejia 5 years ago
parent 21597f8953
commit 0f71b0ced4

@ -19,14 +19,9 @@ internal class BreadcrumbRecorderTest {
@Test
fun `ensure crash reporter recordCrashBreadcrumb is called`() {
val service = object : CrashReporterService {
override fun report(throwable: Throwable) {
}
override fun report(crash: Crash.UncaughtExceptionCrash) {
}
override fun report(crash: Crash.NativeCodeCrash) {
}
override fun report(throwable: Throwable): String? = ""
override fun report(crash: Crash.NativeCodeCrash): String? = ""
override fun report(crash: Crash.UncaughtExceptionCrash): String? = ""
}
val reporter = spy(

Loading…
Cancel
Save