23 lines
555 B
XML
23 lines
555 B
XML
<?xml version="1.0"?>
|
|
<phpunit
|
|
colors="true"
|
|
bootstrap="bootstrap.php"
|
|
convertErrorsToExceptions="false"
|
|
convertNoticesToExceptions="false"
|
|
convertWarningsToExceptions="false"
|
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
|
forceCoversAnnotation="true"
|
|
>
|
|
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">../lib</directory>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
<testsuites>
|
|
<testsuite name="Tokenizer">
|
|
<file>cases/TestTokenizer.php</file>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|