Package com.calclab.emite.xep.disco

Examples of com.calclab.emite.xep.disco.Feature


public class FeatureTest {
  @Test
  public void shouldParsePacket() {
    final XMLPacket packet = XMLBuilder.create("feature").attribute("var", "protocol").getXML();
    final Feature feature = Feature.fromPacket(packet);
    assertEquals("protocol", feature.var);
  }
View Full Code Here

TOP

Related Classes of com.calclab.emite.xep.disco.Feature

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.