Re: creating instance using injector without passing module info again.

2013-10-08 Thread Cédric Beust ♔
And of course, TestNG: http://beust.com/weblog/2010/12/10/testng-and-guice-a-marriage-made-in-heaven/ -- Cédric On Tue, Oct 8, 2013 at 2:34 AM, Stephan Classen wrote: > When you are using Guice in unit test I recommend you look at a testing > framework which uses Guice. > > https://github.c

Re: creating instance using injector without passing module info again.

2013-10-08 Thread Nate Bauernfeind
I tend to avoid using Guice for most tests as I find it hard to actually get decent tests when Guice is in the mix. For any specific class I want to treat I heavily make use of mockito, and so to even use Guice I would create an override module with the mocks and effectively ends up giving a false

Re: creating instance using injector without passing module info again.

2013-10-08 Thread Stephan Classen
When you are using Guice in unit test I recommend you look at a testing framework which uses Guice. https://github.com/ArcBees/Jukito http://onami.apache.org/test/ On 10/08/2013 10:56 AM, kumar santosh wrote: 1. I have class AModule where we are binding are the dependencies. 2. In class Te

creating instance using injector without passing module info again.

2013-10-08 Thread kumar santosh
1. I have class AModule where we are binding are the dependencies. 2. In class Test i created Instance of B using Injector. like . Injector in = Guice.createInjector(new AModule()) // getting instance of B in.getInstance(B); 3. I am in same jvm, In some other class D, can i get instance