Examples of BeforeStanzaSentTestHandler


Examples of com.calclab.emite.xtesting.handlers.BeforeStanzaSentTestHandler

   */
  @Test
  public void shouldEventBeforeSendStanzaEvents() {
    // we need to log in before
    eventBus.fireEvent(new SessionRequestResultEvent(uri("user@domain")));
    final BeforeStanzaSentTestHandler handler = new BeforeStanzaSentTestHandler();
    session.addBeforeStanzaSentHandler(handler);
    final Message packet = new Message();
    session.send(packet);
    assertTrue(handler.isCalledOnce());
    assertSame(packet, handler.getLastEvent().getStanza());
  }
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.