public void testReturnValueConfiguredSeveralTimesCausesException() {
ConstraintMapping marathonMapping = config.createConstraintMapping();
marathonMapping.type( Marathon.class )
.method( "addRunner", Runner.class )
.returnValue()
.constraint( new AssertFalseDef() )
.parameter( 0 )
.returnValue();
}