Differential D9855 Diff 23650 src/lint/linter/xhpast/__tests__/ArcanistXHPASTLintNamingHookTestCase.php
Changeset View
Changeset View
Standalone View
Standalone View
src/lint/linter/xhpast/__tests__/ArcanistXHPASTLintNamingHookTestCase.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Test cases for @{class:ArcanistXHPASTLintNamingHook}. | * Test cases for @{class:ArcanistXHPASTLintNamingHook}. | ||||
| * | |||||
| * @group testcase | |||||
| */ | */ | ||||
| final class ArcanistXHPASTLintNamingHookTestCase extends ArcanistTestCase { | final class ArcanistXHPASTLintNamingHookTestCase extends ArcanistTestCase { | ||||
| public function testCaseUtilities() { | public function testCaseUtilities() { | ||||
| $tests = array( | $tests = array( | ||||
| 'UpperCamelCase' => array(1, 0, 0, 0), | 'UpperCamelCase' => array(1, 0, 0, 0), | ||||
| 'UpperCamelCaseROFL' => array(1, 0, 0, 0), | 'UpperCamelCaseROFL' => array(1, 0, 0, 0), | ||||
| ▲ Show 20 Lines • Show All 53 Lines • Show Last 20 Lines | |||||