mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-01-10 23:01:04 +01:00
da02add6c8
Summary: Creates a new base class for unit testing `ArcanistExternalLinter` subclasses. Specifically, add a test case for verifying that we are correctly parsing the output of `$external_linter --version`. Test Plan: `arc unit` Reviewers: chad, #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11197
9 lines
194 B
PHP
9 lines
194 B
PHP
<?php
|
|
|
|
final class ArcanistPhpcsLinterTestCase extends ArcanistExternalLinterTestCase {
|
|
|
|
public function testLinter() {
|
|
$this->executeTestsInDirectory(dirname(__FILE__).'/phpcs/');
|
|
}
|
|
|
|
}
|