1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-22 06:42:41 +01:00

Support linking unit tests

Summary: This is Arcanist part of D3434.

Test Plan: None.

Reviewers: epriestley, wez

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D3450
This commit is contained in:
vrana 2012-09-06 18:44:15 -07:00
parent 842ca57b4a
commit c50b18142d
2 changed files with 11 additions and 0 deletions

View file

@ -32,6 +32,7 @@ final class ArcanistUnitTestResult {
private $namespace;
private $name;
private $link;
private $result;
private $duration;
private $userData;
@ -47,6 +48,15 @@ final class ArcanistUnitTestResult {
return $this->name;
}
public function setLink($link) {
$this->link = $link;
return $this;
}
public function getLink() {
return $this->link;
}
public function setResult($result) {
$this->result = $result;
return $this;

View file

@ -1324,6 +1324,7 @@ EOTEXT
foreach ($unit_workflow->getTestResults() as $test) {
$this->testResults[] = array(
'name' => $test->getName(),
'link' => $test->getLink(),
'result' => $test->getResult(),
'userdata' => $test->getUserData(),
'coverage' => $test->getCoverage(),