Examples of peekLastRequest()


Examples of ch.inftec.ju.ee.test.sim.RequestHolder.peekLastRequest()

    String req1b = "req1b";

    rh.putRequest(String.class, req1a);
    rh.putRequest(String.class, req1b);

    Assert.assertEquals(req1b, rh.peekLastRequest(String.class));
    Assert.assertEquals(2, rh.getRequestCount(String.class));
  }

  @Test
  public void canPeek_fromEndWithOffset() {
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.