* @param args the arguments to the method under test
* @param result the result returned by the method under test
* @return an instance of {@link MethodUnderTestDuration}
*/
private MethodUnderTestDuration getMethodDurationBean(Method method, Object[] args , Object result) {
MethodUnderTestDuration durationBean = new MethodUnderTestDuration();
durationBean.setClassUnderTest(getTargetInstance().getClass());
durationBean.setMethodUnderTest(method);
durationBean.setMethodArguments(args);
durationBean.setMethodResult(result);
return durationBean;
}