OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:foofield
(Results
1 - 2
of
2
) sorted by null
/external/guice/core/test/com/google/inject/
NullableInjectionPointTest.java
45
createInjector().getInstance(
FooField
.class);
51
" but " +
FooField
.class.getName() + ".foo is not @Nullable");
144
injector.getInstance(
FooField
.class);
165
injector.getInstance(
FooField
.class);
186
injector.getInstance(
FooField
.class);
199
static class
FooField
{
/external/guice/core/test/com/google/inject/spi/
InjectionPointTest.java
61
Field
fooField
= getClass().getField("foo");
63
InjectionPoint injectionPoint = new InjectionPoint(typeLiteral,
fooField
, false);
64
assertSame(
fooField
, injectionPoint.getMember());
67
assertEqualsBothWays(injectionPoint, new InjectionPoint(typeLiteral,
fooField
, false));
73
assertEquals(
fooField
, dependency.getInjectionPoint().getMember());
79
getOnlyElement(new InjectionPoint(typeLiteral,
fooField
, false).getDependencies()));
Completed in 148 milliseconds