1 package test.guice; 2 3 import com.google.inject.Inject; 4 5 import org.testng.annotations.Test; 6 7 public class GuiceInheritanceTest extends GuiceBase { 8 9 @Inject 10 ISingleton m_singleton; 11 12 @Test singletonShouldWork()13 public void singletonShouldWork() { 14 m_singleton.doSomething(); 15 } 16 } 17