本文整理汇总了Java中com.jayway.restassured.specification.RequestSpecification.delete方法的典型用法代码示例。如果您正苦于以下问题:Java RequestSpecification.delete方法的具体用法?Java RequestSpecification.delete怎么用?Java RequestSpecification.delete使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.jayway.restassured.specification.RequestSpecification
的用法示例。
在下文中一共展示了RequestSpecification.delete方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: deleteQueue
import com.jayway.restassured.specification.RequestSpecification; //导入方法依赖的package包/类
public static void deleteQueue(int id, int expectStatusCode) throws IOException {
final RequestSpecification req = given();
final ResponseSpecification res;
res = req.then();
res.expect().statusCode(expectStatusCode);
req.delete(RESTTestConfig.getInstance().getFullURL("/queue/{id}"), id);
}
示例2: send
import com.jayway.restassured.specification.RequestSpecification; //导入方法依赖的package包/类
public static Response send(RequestSpecification request, String methodPath, HttpMethodType methodType)
{
Response response = null;
SystemProxy.setupProxy();
switch (methodType)
{
case HEAD:
response = request.head(methodPath);
break;
case GET:
response = request.get(methodPath);
break;
case PUT:
response = request.put(methodPath);
break;
case POST:
response = request.post(methodPath);
break;
case DELETE:
response = request.delete(methodPath);
break;
case PATCH:
response = request.patch(methodPath);
break;
default:
throw new RuntimeException("MethodType is not specified for the API method: " + methodPath);
}
return response;
}
示例3: delete
import com.jayway.restassured.specification.RequestSpecification; //导入方法依赖的package包/类
public void delete(RequestSpecification request, ID id)
{
request.delete(getResolvedEntityUri(), getIdParams(id));
}