* from the ActivityBean.
*/
public void activityFindByProcess() throws Exception {
InitialContext ic = new InitialContext();
Object objref = ic.lookup("ActivityBean");
WfActivityHome home
= (WfActivityHome)PortableRemoteObject.narrow
(objref, WfActivityHome.class);
assertTrue (home != null);
Collection c = home.findByProcess(new Long(1));
assertTrue (c != null);
}