Searched defs:PlainA (Results 1 - 1 of 1) sorted by relevance

/external/guice/core/test/com/google/inject/
H A DBinderTestSuite.java61 .name("bind PlainA named apple")
64 bind(PlainA.class).annotatedWith(named("apple"));
68 PlainA.class.getName(), named("apple"))
72 .name("bind A to new PlainA(1)")
75 bind(A.class).toInstance(new PlainA(1));
79 .expectedValues(new PlainA(1), new PlainA(1), new PlainA(1))
95 .expectedValues(new PlainA(201), new PlainA(20
689 static class PlainA implements A { class in class:BinderTestSuite
691 PlainA() { method in class:BinderTestSuite.PlainA
697 PlainA(int value) { method in class:BinderTestSuite.PlainA
[all...]

Completed in 82 milliseconds