/** Goes through all methods and adds an implicit cost for those beginning with "set" (assuming * to test the {@code baseMethod}'s class, you need to be able to call the setters for initialization. */ private void addSetterInjection(MethodInfo baseMethod, TestabilityVisitor.CostRecordingFrame frame) { foreach (MethodInfo setter in baseMethod.GetSiblingSetters()) { frame.applyImplicitCost(setter, Reason.IMPLICIT_SETTER); } }