Home
last modified time | relevance | path

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

/external/guice/core/test/com/google/inject/spi/
DInjectionPointTest.java61 Field fooField = getClass().getField("foo"); in testFieldInjectionPoint() local
63 InjectionPoint injectionPoint = new InjectionPoint(typeLiteral, fooField, false); in testFieldInjectionPoint()
64 assertSame(fooField, injectionPoint.getMember()); in testFieldInjectionPoint()
67 assertEqualsBothWays(injectionPoint, new InjectionPoint(typeLiteral, fooField, false)); in testFieldInjectionPoint()
73 assertEquals(fooField, dependency.getInjectionPoint().getMember()); in testFieldInjectionPoint()
79 getOnlyElement(new InjectionPoint(typeLiteral, fooField, false).getDependencies())); in testFieldInjectionPoint()