Home
last modified time | relevance | path

Searched defs:ThrowingConstructor (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/libgav1/src/utils/
H A Dmemory_test.cc51 struct ThrowingConstructor : public Allocable { struct
52 ThrowingConstructor() { throw std::exception(); } in ThrowingConstructor() argument
54 uint8_t x;
/aosp_15_r20/external/mockito/src/test/java/org/mockito/internal/util/reflection/
H A DParameterizedConstructorInstantiatorTest.java132 private static class ThrowingConstructor { class in ParameterizedConstructorInstantiatorTest
133 … public ThrowingConstructor(Observer observer) throws IOException { throw new IOException(); } in ThrowingConstructor() method in ParameterizedConstructorInstantiatorTest.ThrowingConstructor
/aosp_15_r20/external/mockito/src/test/java/org/mockitousage/annotation/
H A DMockInjectionUsingSetterOrPropertyTest.java143 static class ThrowingConstructor { class in MockInjectionUsingSetterOrPropertyTest
144 ThrowingConstructor() { throw new RuntimeException("aha"); } in ThrowingConstructor() method in MockInjectionUsingSetterOrPropertyTest.ThrowingConstructor
H A DSpyAnnotationTest.java314 static class ThrowingConstructor { class in SpyAnnotationTest
315 ThrowingConstructor() { in ThrowingConstructor() method in SpyAnnotationTest.ThrowingConstructor
/aosp_15_r20/external/mockito-kotlin/tests/src/test/kotlin/test/
H A DClasses.kt79 abstract class ThrowingConstructor { class