Package com.alexgilleran.icesoap.xpath.elements.impl

Examples of com.alexgilleran.icesoap.xpath.elements.impl.AttributeXPathElement


   * @throws XMLParsingException
   */
  private void assertAttribute(XPathPullParser parser, XPathElement node,
      String name, String value) throws XMLParsingException {
    assertEquals(XPathPullParser.ATTRIBUTE, parser.next());
    assertEquals(new AttributeXPathElement(new SingleSlashXPathElement(
        name, node)), parser.getCurrentElement());
    assertEquals(value, parser.getCurrentValue());
  }
View Full Code Here

TOP

Related Classes of com.alexgilleran.icesoap.xpath.elements.impl.AttributeXPathElement

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.