fix (接口测试): 文档断言必含参数勾选

This commit is contained in:
fit2-zhao 2021-11-24 19:00:14 +08:00 committed by fit2-zhao
parent 2fce7044cb
commit ae86fbb3d5
1 changed files with 2 additions and 2 deletions

View File

@ -46,12 +46,12 @@ public class DocumentElement {
}
}
public DocumentElement(String name, String type, Object expectedOutcome, boolean typeVerification, List<DocumentElement> children) {
public DocumentElement(String name, String type, Object expectedOutcome, boolean include, List<DocumentElement> children) {
this.id = UUID.randomUUID().toString();
this.name = name;
this.expectedOutcome = expectedOutcome;
this.type = type;
this.typeVerification = typeVerification;
this.include = include;
this.children = children == null ? this.children = new LinkedList<>() : children;
this.rowspan = 1;
this.contentVerification = "value_eq";