forked from mockito/mockito
-
Notifications
You must be signed in to change notification settings - Fork 1
Related Projects
Brice Dutheil edited this page Apr 21, 2014
·
4 revisions
A Spring framework extension that simplifies creation of the mocks in the spring xml context files, ex:
<mockito:mock class="java.util.Date" id="mockedDate" /> <mockito:spy id="beanToBeSpied" />
THe project homepage
An Spring framework extension that pushes former approach even further - all the configuration is annotations based - no need to create special mock overriding contexts. More info here
Project to investigate the possibility of injecting objects into Collections using generics to determine which objects and mock especially can be placed into the Collections.
@InjectMocks private MyDelegate delegate;
@Mock private MyListener listener1;
@Mock private MyListener listener2;
@Before public void setup() { MockitoCollectionAnnotations.inject(this);}
See here to read more about it.