Package com.calclab.emite.xtesting.handlers

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

Related Classes of com.calclab.emite.xtesting.handlers.BeforeStanzaSentTestHandler

Copyright © 2018 www.massapicom. 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.