Searched refs:TestRuntimeException (Results 1 – 7 of 7) sorted by relevance
78 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>()
179 } 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 ReflectionHelpersTest345 throw new TestRuntimeException(); in throwUncheckedException()357 throw new TestRuntimeException(); in staticThrowUncheckedException()391 throw new TestRuntimeException(); in ThrowsUncheckedException()
179 } 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 ReflectionHelpersTest357 throw new TestRuntimeException(); in throwUncheckedException()369 throw new TestRuntimeException(); in staticThrowUncheckedException()403 throw new TestRuntimeException(); in ThrowsUncheckedException()
80 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>()
24 val exception = TestRuntimeException("test") in <lambda>()
86 public class TestRuntimeException(message: String? = null, private val data: Any? = null) : Runtime… class