| |
|
| org.ow2.easybeans.tests.common.ejbs.base.invocationcontext.ItfInvocationParameterTest
All known Subclasses: org.ow2.easybeans.tests.common.ejbs.stateless.containermanaged.invocationcontext.SLSBInvocationParameterTest,
ItfInvocationParameterTest | public interface ItfInvocationParameterTest (Code) | | This interface is used to test if the invocation context getParameters() and setParameter() work following the specification.
author: Eduardo Studzinski Estima de Castro author: Gisele Pinheiro Souza |
Method Summary | |
void | testNull(Class beanClass) Verifies if the intercepted method parameters can be modified to a null
reference. | void | testWithModification(Class beanClass) Verifies if the intercepted method parameters can be returned WITH
modifications. | void | testWithoutModification(Class beanClass) Verifies if the intercepted method parameters can be returned WITHOUT
modifications. |
testNull | void testNull(Class beanClass) throws Exception(Code) | | Verifies if the intercepted method parameters can be modified to a null
reference. The interceptor method is on the bean class.
Parameters: beanClass - the bean used to test throws: Exception - if there is a problem with the test. |
testWithModification | void testWithModification(Class beanClass) throws Exception(Code) | | Verifies if the intercepted method parameters can be returned WITH
modifications. The interceptor is a external class.
Parameters: beanClass - the bean used to test throws: Exception - if there is a problem with the test. |
testWithoutModification | void testWithoutModification(Class beanClass) throws Exception(Code) | | Verifies if the intercepted method parameters can be returned WITHOUT
modifications. The interceptor is a external class.
Parameters: beanClass - the bean used to test throws: Exception - if there is a problem with the test. |
|
|
|