IDEA设置快捷操作

步骤:
1、IDEA设置快捷操作_第1张图片
2、IDEA设置快捷操作_第2张图片
3、
IDEA设置快捷操作_第3张图片
4、IDEA设置快捷操作_第4张图片
然后直接用就可以啦
常用的接口测试模板:

given()
    .contentType(JSON)
    .body($requestBody$).log().all()
    .when()
    .post($path$)
    .then()
    .log()
    .all()
    .statusCode(200);
given()
    .contentType(ContentType.JSON)
    .body().log().all()
    .when()
    .get($path$)
    .then()
    .log()
    .all()
    .statusCode(200);

你可能感兴趣的:(java)