4243444546474849505152
EagerLoader el = new EagerLoader(); List l = new ArrayList(); ServicePoint sp = (ServicePoint) newMock(ServicePoint.class); sp.forceServiceInstantiation(); replayControls(); l.add(sp);
3435363738394041424344
Iterator i = _servicePoints.iterator(); while (i.hasNext()) { ServicePoint point = (ServicePoint) i.next(); point.forceServiceInstantiation(); } } public void setServicePoints(List list) {
3536373839404142434445