Package org.springframework.test.util

Examples of org.springframework.test.util.XpathExpectationsHelper


   * @throws XPathExpressionException
   */
  protected XpathRequestMatchers(String expression, Map<String, String> namespaces, Object ... args)
      throws XPathExpressionException {

    this.xpathHelper = new XpathExpectationsHelper(expression, namespaces, args);
  }
View Full Code Here


   * @throws XPathExpressionException
   */
  protected XpathResultMatchers(String expression, Map<String, String> namespaces, Object ... args)
      throws XPathExpressionException {

    this.xpathHelper = new XpathExpectationsHelper(expression, namespaces, args);
  }
View Full Code Here

TOP

Related Classes of org.springframework.test.util.XpathExpectationsHelper

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.