mirror of
https://github.com/barryvdh/ReflectionDocBlock.git
synced 2026-08-17 17:47:13 +00:00
Added unit tests for LongDescription.php; Added the "src" folder as white listed for code coverage in the PHPUnit configuration; Fixed the @covers annotation inside the CoversTagTest.php (isn't this ironic?).
15 lines
372 B
XML
15 lines
372 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<phpunit colors="true" strict="true" bootstrap="vendor/autoload.php">
|
|
<testsuites>
|
|
<testsuite name="phpDocumentor\Reflection\DocBlock">
|
|
<directory>./tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./src/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|