From 99949bec8dc70f94a1ce08bfa66f86da03593070 Mon Sep 17 00:00:00 2001 From: vrana Date: Fri, 7 Sep 2012 14:21:51 -0700 Subject: [PATCH] Link Phabricator tests Test Plan: This diff. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D3457 --- src/infrastructure/testing/PhabricatorTestCase.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/infrastructure/testing/PhabricatorTestCase.php b/src/infrastructure/testing/PhabricatorTestCase.php index e7150ba8fe..51acaf71fd 100644 --- a/src/infrastructure/testing/PhabricatorTestCase.php +++ b/src/infrastructure/testing/PhabricatorTestCase.php @@ -136,4 +136,12 @@ abstract class PhabricatorTestCase extends ArcanistPhutilTestCase { return new PhabricatorStorageFixtureScopeGuard($name); } + protected function getLink($method) { + $phabricator_project = 'PHID-APRJ-3f1fc779edeab89b2171'; + return + 'https://secure.phabricator.com/diffusion/symbol/'.$method. + '/?lang=php&projects='.$phabricator_project. + '&jump=true&context='.get_class($this); + } + }