0
我想爲Phabricator編寫自定義單元測試。Phabricator:運行單元測試
爲此,我檢查了文檔Writing Unit Tests in Phabricator和./phabricator/src/infrastructure/testing/testcase/PhabricatorTrivialTestCase.php
創建的文件(使用瑣碎phabricator測試用例),內容如下
class PhabricatorTrivialTestCase extends PhabricatorTestCase {
private $two;
public function willRunOneTest($test_name) {
// You can execute setup steps which will run before each test in this
// method.
$this->two = 2;
}
public function testAllIsRightWithTheWorld() {
$this->assertEqual(4, $this->two + $this->two, '2 + 2 = 4');
}
}
當我嘗試運行它,我得到以下消息。
$ cd ./phabricator
$ arc unit src/infrastructure/testing/testcase/
No tests to run.
爲什麼我不能按照記錄運行測試?有沒有失蹤?