* modifications.
* @param beanClass bean class name
* @throws Exception if there is a problem with the test.
*/
public void testWithoutModification(final Class beanClass) throws Exception {
ItfInvocationParameter00 icBean = getBeanLocalInstance(beanClass, ItfInvocationParameter00.class);
ComplexObject00 cmpObj = new ComplexObject00();
logger.debug("before bean method call, parameter: {0}", cmpObj);
Object[] arResult = icBean.getObjects01(cmpObj);
logger.debug("after bean method call, parameter: {0}", arResult[0]);
assertEquals(arResult[0], cmpObj, "[0]The object should be the same. ");
}