blob: 7d4d33b0641e33dcf241466c63a55bc025588937 [file] [log] [blame]
crazyboblee0789b192007-02-13 02:43:28 +00001/**
2 * Copyright (C) 2006 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.google.inject;
18
19import junit.framework.TestCase;
20
21/**
22 * @author crazybob@google.com (Bob Lee)
23 */
24public class ImplicitBindingTest extends TestCase {
25
26 public void testCircularDependency() throws ContainerCreationException {
27 ContainerBuilder builder = new ContainerBuilder();
crazyboblee278ee4d2007-02-15 19:23:13 +000028 Container container = builder.create();
crazyboblee0789b192007-02-13 02:43:28 +000029 Foo foo = container.getInstance(Foo.class);
30 assertSame(foo, foo.bar.foo);
31 }
32
33 static class Foo {
34 @Inject Bar bar;
35 }
36
37 static class Bar {
38 final Foo foo;
39 @Inject
40 public Bar(Foo foo) {
41 this.foo = foo;
42 }
43 }
44}