this is kind of in between <#C0B8Y8BHC|rx> and <#C...
# test
a
this is kind of in between #rx and #test, I'm not sure why one of this tests passes while the other fails:
Copy code
@Test
    fun `throw exception fails test`() {
        throw Throwable()
    }

    @Test
    fun `error not implemented doesn't fail`() {
        Completable.error(Throwable()).subscribe()
    }
even though having any of those lines in your app would crash it