mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-02-09 21:38:29 +01:00
14 lines
324 B
PHP
14 lines
324 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Test cases were mostly taken from
|
||
|
* https://git.gnome.org/browse/libxml2/tree/test.
|
||
|
*/
|
||
|
final class ArcanistXMLLinterTestCase extends ArcanistArcanistLinterTestCase {
|
||
|
public function testLintPath() {
|
||
|
$this->executeTestsInDirectory(
|
||
|
dirname(__FILE__).'/xml/',
|
||
|
new ArcanistXMLLinter());
|
||
|
}
|
||
|
}
|