blob: d0037f85b0a12181f862793601c5356accb9cda1 [file] [log] [blame]
package test.guice;
import com.google.inject.Inject;
import org.testng.annotations.Test;
@Test(guiceModule = GuiceShouldFailTest.class)
public class GuiceShouldFailTest {
@Inject
ISingleton m_singleton;
@Test
public void singletonShouldWork() {
m_singleton.doSomething();
}
}