Home
last modified time | relevance | path

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

/external/guice/core/test/com/google/inject/
DProvisionExceptionsTest.java40 bind(Exploder.class).to(Explosion.class); in testConstructorRuntimeException()
62 bind(Exploder.class).to(Explosion.class); in testConstructorCheckedException()
83 bind(Exploder.class).toProvider(new Provider<Exploder>() { in testCustomProvidersRuntimeException()
84 public Exploder get() { in testCustomProvidersRuntimeException()
110 @Provides Exploder exploder() { in testProviderMethodRuntimeException()
133 @Provides Exploder exploder() throws IOException { in testProviderMethodCheckedException()
151 private static interface Exploder {} interface in ProvisionExceptionsTest
152 public static class Explosion implements Exploder {
175 @Inject TracerImpl(Exploder explosion) { in TracerImpl()