Options options = new Options();
options.setLimbPropertiesToKeep( "feature,intersection,label" );
LeanBeanLimbRefiner testObj = new LeanBeanLimbRefiner();
testObj.setDefaultBeanProperties( "edges,label,position" );
testObj.refine( this.limb, null, options );
assertNull( this.limb.getEdges() );
assertNotNull( this.limb.getFeature() );
assertNotNull( this.limb.getIntersection() );
assertNotNull( this.limb.getLabel() );