Feature #5 申请友链时自动抓取网页信息 #6
@@ -63,7 +63,7 @@ public class BaseTest {
|
|||||||
};
|
};
|
||||||
protected static final TypeReference<?> STRING_TYPE = new TypeReference<Response<String>>() {
|
protected static final TypeReference<?> STRING_TYPE = new TypeReference<Response<String>>() {
|
||||||
};
|
};
|
||||||
protected static final TypeReference<?> OBJECT_TYPE = new TypeReference<Response<String>>() {
|
protected static final TypeReference<?> OBJECT_TYPE = new TypeReference<Response<Object>>() {
|
||||||
};
|
};
|
||||||
protected static final TypeReference<?> MAP_OBJECT_TYPE = new TypeReference<Response<Map<String, Object>>>() {
|
protected static final TypeReference<?> MAP_OBJECT_TYPE = new TypeReference<Response<Map<String, Object>>>() {
|
||||||
};
|
};
|
||||||
@@ -147,7 +147,7 @@ public class BaseTest {
|
|||||||
try {
|
try {
|
||||||
// 测试getMockData方法
|
// 测试getMockData方法
|
||||||
assertNotNull(getMockData(get("/headerInfo")));
|
assertNotNull(getMockData(get("/headerInfo")));
|
||||||
getMockData((get("/headerInfo"))).andDo(result -> assertNotNull(getResponse(result)));
|
getMockData((get("/headerInfo"))).andDo(result -> assertNotNull(getResponse(result, OBJECT_TYPE)));
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user