mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-01-26 06:28:19 +01:00
992d939e3a
Summary: I don't think that this provides too much value. I think that we should rework this to be inferred from the `.arcconfig` file perhaps? Test Plan: `arc unit` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11662
13 lines
278 B
PHP
13 lines
278 B
PHP
<?php
|
|
|
|
/**
|
|
* Test cases were mostly taken from
|
|
* https://git.gnome.org/browse/libxml2/tree/test.
|
|
*/
|
|
final class ArcanistXMLLinterTestCase extends ArcanistLinterTestCase {
|
|
|
|
public function testLinter() {
|
|
$this->executeTestsInDirectory(dirname(__FILE__).'/xml/');
|
|
}
|
|
|
|
}
|