Changeset View
Changeset View
Standalone View
Standalone View
src/unit/engine/ArcanistUnitTestEngine.php
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | final public function setEnableCoverage($enable_coverage) { | ||||
| $this->enableCoverage = $enable_coverage; | $this->enableCoverage = $enable_coverage; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| final public function getEnableCoverage() { | final public function getEnableCoverage() { | ||||
| return $this->enableCoverage; | return $this->enableCoverage; | ||||
| } | } | ||||
| final public function setRenderer(ArcanistUnitRenderer $renderer) { | final public function setRenderer(ArcanistUnitRenderer $renderer = null) { | ||||
| $this->renderer = $renderer; | $this->renderer = $renderer; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| abstract public function run(); | abstract public function run(); | ||||
| /** | /** | ||||
| * Modify the return value of this function in the child class, if you do | * Modify the return value of this function in the child class, if you do | ||||
| Show All 9 Lines | |||||