*/
@Test
public void testSlsbClientInterceptorStackOverride() throws Exception
{
// Lookup the proxies
TestClientInterceptorStack normal = (TestClientInterceptorStack) context
.lookup(TestClientInterceptorStack.JNDI_BINDING_NORMAL_STACK_SLSB);
TestClientInterceptorStack overridden = (TestClientInterceptorStack) context
.lookup(TestClientInterceptorStack.JNDI_BINDING_OVERRIDDEN_STACK_SLSB);
// Invoke upon the standard
String returnValueStandard = normal.getValue();
TestCase.assertEquals(TestClientInterceptorStack.DEFAULT_RETURN_VALUE, returnValueStandard);
log.info("Got expected result from SLSB Standard Binding: " + returnValueStandard);
// Invoke upon the overridden
String returnValueOverridden = overridden.getValue();
TestCase.assertEquals(ReturnStaticValueInterceptor.RETURN_VALUE, returnValueOverridden);
log.info("Got expected result from SLSB Overridden Binding: " + returnValueOverridden);
}