fix (接口测试): 文档断言必含参数勾选
This commit is contained in:
parent
2fce7044cb
commit
ae86fbb3d5
|
@ -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";
|
||||
|
|
Loading…
Reference in New Issue