Changeset View
Changeset View
Standalone View
Standalone View
src/unit/engine/__tests__/PHPUnitTestEngineTestCase.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Tests for @{class:PHPUnitTestEngine}. | * Tests for @{class:PHPUnitTestEngine}. | ||||
| * | |||||
| * @group testcase | |||||
| */ | */ | ||||
| final class PHPUnitTestEngineTestCase extends ArcanistTestCase { | final class PHPUnitTestEngineTestCase extends ArcanistTestCase { | ||||
| public function testSearchLocations() { | public function testSearchLocations() { | ||||
| $path = '/path/to/some/file/X.php'; | $path = '/path/to/some/file/X.php'; | ||||
| $this->assertEqual( | $this->assertEqual( | ||||
| array( | array( | ||||
| '/path/to/some/file/', | '/path/to/some/file/', | ||||
| '/path/to/some/file/tests/', | '/path/to/some/file/tests/', | ||||
| '/path/to/some/file/Tests/', | '/path/to/some/file/Tests/', | ||||
| '/path/to/some/tests/', | '/path/to/some/tests/', | ||||
| Show All 26 Lines | |||||