MockInjection.java | 21 * Allow the user of this class to configure the way the injection of mocks will happen. 56 private Set<Object> mocks = newMockSafeHashSet(); field in class:MockInjection.OngoingMockInjection 70 public OngoingMockInjection withMocks(Set<Object> mocks) { 71 this.mocks.addAll(checkNotNull(mocks, "mocks")); 92 injectionStrategies.process(field, fieldOwner, mocks); 93 postInjectionStrategies.process(field, fieldOwner, mocks);
|