michalborek / mockito-eclipse-tools

Eclipse plugin that simplifies test creation by providing refactorings for Mockito mocks.
7 stars 5 forks source link

Convert object to mock #4

Open michalborek opened 10 years ago

michalborek commented 10 years ago

It should be able to convert certain object to mock.

E.g. Before: SomeClass object = new SomeClass();

after: Either: @Mock SomeClass object; Or: SomeClass object = mock(SomeClass.class);