Package org.jboss.test.profileservice.test.ejb3

Examples of org.jboss.test.profileservice.test.ejb3.TestRemoteBusiness.echo()


      log.info("Method stats before invocation: " + methodStats);
      Assert.assertTrue("Method stats should be empty", methodStats.isEmpty());

      // Invoke upon the EJB
      TestRemoteBusiness remoteBusiness = (TestRemoteBusiness) getInitialContext().lookup(ejbName + "/remote");
      remoteBusiness.echo("Some test String");

      // Ensure the stats reflect the invocation
      invocationStats = getInvocationStats(component);
      methodStats = invocationStats.methodStats;
      log.info("Method stats after invocation: " + methodStats);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.