Skip to content

Commit

Permalink
add parameters to tree
Browse files Browse the repository at this point in the history
  • Loading branch information
baev committed Jun 14, 2017
1 parent 52ea91f commit a1a9ee4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ protected void addResultToTree(final Supplier<String> uidGenerator,
.withName(getNodeName(result))
.withStatus(result.getStatus())
.withTime(result.getTime())
.withFlaky(isFlaky);
.withFlaky(isFlaky)
.withParameters(result.getParameters());
for (WithChildren currentLevelGroup : currentLevelGroups) {
currentLevelGroup.getChildren().add(testCaseNode);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
<xsd:element name="time" type="api:Time"/>
<xsd:element name="status" type="api:Status"/>
<xsd:element name="flaky" type="xsd:boolean"/>
<xsd:element name="parameters" type="api:Parameters" minOccurs="0"/>
</xsd:all>
</xsd:complexType>

Expand Down

0 comments on commit a1a9ee4

Please # to comment.