Gets an instance of the bean.
throws: Exception - if an error occurs.
testSFDifferentInstanceInjected
public void testSFDifferentInstanceInjected()(Code)
Verifies the identity of two different stateful beans(example:
bean1.equals(bean2)). The beans were goten by injection.
testSFDifferentInstanceLookup
public void testSFDifferentInstanceLookup() throws Exception(Code)
Verifies the identity of two different stateful beans(example:
bean1.equals(bean2)). The beans were goten by lookup.
throws: Exception - if a lookup error occurs.
Verifies the identity of the same stateful bean(example:
bean1.equals(bean1)). The bean was goten by injection.
testSFSameInstanceLookup
public void testSFSameInstanceLookup() throws Exception(Code)
Verifies the identity of the same stateful bean(example:
bean1.equals(bean1)). The bean was goten by lookup.
throws: Exception - if a lookup error occurs.
testSLDifferentInstanceInjected
public void testSLDifferentInstanceInjected()(Code)
Verifies the identity of two different stateless beans(example:
bean1.equals(bean2)). The beans were goten by injection.
testSLDifferentInstanceLookup
public void testSLDifferentInstanceLookup() throws Exception(Code)
Verifies the identity of two different stateless beans(example:
bean1.equals(bean2)). The beans were goten by lookup.
throws: Exception - if a lookup error occurs.
Verifies the identity of the same stateless bean(example:
bean1.equals(bean1)). The bean was goten by injection.
testSLSameInstanceLookup
public void testSLSameInstanceLookup() throws Exception(Code)
Verifies the identity of the same stateless bean(example:
bean1.equals(bean1)). The bean was goten by lookup.
throws: Exception - if a lookup error occurs.