Home
last modified time | relevance | path

Searched refs:TestRuntimeException (Results 1 – 7 of 7) sorted by relevance

/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx3/test/
DConvertTest.kt78 throw TestRuntimeException("OK") in <lambda>()
82 check(it is TestRuntimeException && it.message == "OK") { "$it" } in <lambda>()
86 check(it is TestRuntimeException && it.message == "OK") { "$it" } in <lambda>()
110 throw TestRuntimeException("OK") in <lambda>()
114 check(it is TestRuntimeException && it.message == "OK") { "$it" } in <lambda>()
118 check(it is TestRuntimeException && it.message == "OK") { "$it" } in <lambda>()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx2/test/
DConvertTest.kt78 throw TestRuntimeException("OK") in <lambda>()
82 check(it is TestRuntimeException && it.message == "OK") { "$it" } in <lambda>()
86 check(it is TestRuntimeException && it.message == "OK") { "$it" } in <lambda>()
110 throw TestRuntimeException("OK") in <lambda>()
114 check(it is TestRuntimeException && it.message == "OK") { "$it" } in <lambda>()
118 check(it is TestRuntimeException && it.message == "OK") { "$it" } in <lambda>()
/external/robolectric-shadows/shadowapi/src/test/java/org/robolectric/util/
DReflectionHelpersTest.java179 } catch (TestRuntimeException e) { in callInstanceMethodReflectively_rethrowsUncheckedException()
220 } catch (TestRuntimeException e) { in callStaticMethodReflectively_rethrowsUncheckedException()
258 } catch (TestRuntimeException e) { in callConstructorReflectively_rethrowsUncheckedException()
301 private static class TestRuntimeException extends RuntimeException { class in ReflectionHelpersTest
345 throw new TestRuntimeException(); in throwUncheckedException()
357 throw new TestRuntimeException(); in staticThrowUncheckedException()
391 throw new TestRuntimeException(); in ThrowsUncheckedException()
/external/robolectric/shadowapi/src/test/java/org/robolectric/util/
DReflectionHelpersTest.java179 } catch (TestRuntimeException e) { in callInstanceMethodReflectively_rethrowsUncheckedException()
220 } catch (TestRuntimeException e) { in callStaticMethodReflectively_rethrowsUncheckedException()
258 } catch (TestRuntimeException e) { in callConstructorReflectively_rethrowsUncheckedException()
314 private static class TestRuntimeException extends RuntimeException {} class in ReflectionHelpersTest
357 throw new TestRuntimeException(); in throwUncheckedException()
369 throw new TestRuntimeException(); in staticThrowUncheckedException()
403 throw new TestRuntimeException(); in ThrowsUncheckedException()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactor/test/
DConvertTest.kt80 throw TestRuntimeException("OK") in <lambda>()
84 check(it is TestRuntimeException && it.message == "OK") { "$it" } in <lambda>()
88 check(it is TestRuntimeException && it.message == "OK") { "$it" } in <lambda>()
/external/kotlinx.coroutines/integration/kotlinx-coroutines-guava/test/
DListenableFutureToStringTest.kt24 val exception = TestRuntimeException("test") in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/
DTestBase.common.kt86 public class TestRuntimeException(message: String? = null, private val data: Any? = null) : Runtime… class