Uses of Class
com.jayway.restassured.specification.Argument

Packages that use Argument
com.jayway.restassured   
com.jayway.restassured.builder   
com.jayway.restassured.internal   
com.jayway.restassured.specification   
 

Uses of Argument in com.jayway.restassured
 

Methods in com.jayway.restassured that return types with arguments of type Argument
static List<Argument> RestAssured.withArgs(Object firstArgument, Object... additionalArguments)
          Slightly shorter version of RestAssured.withArguments(Object, Object...).
static List<Argument> RestAssured.withArguments(Object firstArgument, Object... additionalArguments)
          Create a list of arguments that can be used to create parts of the path in a body/content expression.
 

Uses of Argument in com.jayway.restassured.builder
 

Method parameters in com.jayway.restassured.builder with type arguments of type Argument
 ResponseSpecBuilder ResponseSpecBuilder.expectBody(String path, List<Argument> arguments, org.hamcrest.Matcher<?> matcher)
          Same as ResponseSpecBuilder.expectBody(String, org.hamcrest.Matcher) expect that you can pass arguments to the path.
 ResponseSpecBuilder ResponseSpecBuilder.expectContent(String path, List<Argument> arguments, org.hamcrest.Matcher<?> matcher)
          Same as ResponseSpecBuilder.expectContent(String, org.hamcrest.Matcher) expect that you can pass arguments to the path.
 ResponseSpecBuilder ResponseSpecBuilder.rootPath(String rootPath, List<Argument> arguments)
          Set the root path of the response body so that you don't need to write the entire path for each expectation.
 

Uses of Argument in com.jayway.restassured.internal
 

Method parameters in com.jayway.restassured.internal with type arguments of type Argument
 ResponseSpecification ResponseSpecificationImpl.body(String key, List<Argument> arguments, org.hamcrest.Matcher matcher, Object... additionalKeyMatcherPairs)
           
 ResponseSpecification ResponseSpecificationImpl.content(String key, List<Argument> arguments, org.hamcrest.Matcher matcher, Object... additionalKeyMatcherPairs)
           
 ResponseSpecification ResponseSpecificationImpl.root(String rootPath, List<Argument> arguments)
           
 ResponseSpecification ResponseSpecificationImpl.rootPath(String rootPath, List<Argument> arguments)
           
 

Uses of Argument in com.jayway.restassured.specification
 

Methods in com.jayway.restassured.specification that return Argument
static Argument Argument.arg(Object arg)
           
static Argument Argument.withArg(Object arg)
           
 

Method parameters in com.jayway.restassured.specification with type arguments of type Argument
 ResponseSpecification ResponseSpecification.body(String key, List<Argument> arguments, org.hamcrest.Matcher matcher, Object... additionalKeyMatcherPairs)
          Same as ResponseSpecification.body(String, org.hamcrest.Matcher, Object...) expect that you can pass arguments to the key.
 ResponseSpecification ResponseSpecification.content(String path, List<Argument> arguments, org.hamcrest.Matcher matcher, Object... additionalKeyMatcherPairs)
          Same as ResponseSpecification.content(String, java.util.List, org.hamcrest.Matcher, Object...) expect that you can pass arguments to the path.
 ResponseSpecification ResponseSpecification.root(String rootPath, List<Argument> arguments)
          Set the root path with arguments of the response body so that you don't need to write the entire path for each expectation.
 ResponseSpecification ResponseSpecification.rootPath(String rootPath, List<Argument> arguments)
          Set the root path with arguments of the response body so that you don't need to write the entire path for each expectation.
 



Copyright © 2010-2012. All Rights Reserved.