<?php
abstract class ArcanistExternalLinterTestCase extends ArcanistLinterTestCase {
final public function testVersion() {
try {
$version = $this->getLinter()->getVersion();
$this->assertTrue(
$version !== false,
pht('Failed to parse version from command.'));
} catch (ArcanistMissingLinterException $ex) {
$this->assertSkipped($ex->getMessage());
}
}
}
Back to Directory