Package org.springframework.test.web.support

Examples of org.springframework.test.web.support.JsonPathExpectationsHelper


   * @param args arguments to parameterize the JSONPath expression with using
   * the formatting specifiers defined in
   * {@link String#format(String, Object...)}
   */
  protected JsonPathRequestMatchers(String expression, Object ... args) {
    this.jsonPathHelper = new JsonPathExpectationsHelper(expression, args);
  }
View Full Code Here


   * Protected constructor. Use
   * {@link MockMvcResultMatchers#jsonPath(String, Object...)} or
   * {@link MockMvcResultMatchers#jsonPath(String, Matcher)}.
   */
  protected JsonPathResultMatchers(String expression, Object ... args) {
    this.jsonPathHelper = new JsonPathExpectationsHelper(expression, args);
  }
View Full Code Here

TOP

Related Classes of org.springframework.test.web.support.JsonPathExpectationsHelper

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.