Changeset View
Changeset View
Standalone View
Standalone View
src/unit/engine/ArcanistNoseTestEngine.php
- This file was copied from src/unit/engine/NoseTestEngine.php.
| <?php | <?php | ||||
| /** | /** | ||||
| * Very basic 'nose' unit test engine wrapper. | * Very basic 'nose' unit test engine wrapper. | ||||
| * | * | ||||
| * Requires nose 1.1.3 for code coverage. | * Requires nose 1.1.3 for code coverage. | ||||
| * | |||||
| * @todo Should be final but isn't because of @{class:NoseTestEngine}. | |||||
| */ | */ | ||||
| final class NoseTestEngine extends ArcanistUnitTestEngine { | class ArcanistNoseTestEngine extends ArcanistUnitTestEngine { | ||||
| public function run() { | public function run() { | ||||
| $paths = $this->getPaths(); | $paths = $this->getPaths(); | ||||
| $affected_tests = array(); | $affected_tests = array(); | ||||
| foreach ($paths as $path) { | foreach ($paths as $path) { | ||||
| $absolute_path = Filesystem::resolvePath($path); | $absolute_path = Filesystem::resolvePath($path); | ||||
| ▲ Show 20 Lines • Show All 150 Lines • Show Last 20 Lines | |||||