canyin-project/ybcy/vendor/cebe/markdown/phpunit.xml.dist
2024-11-01 16:07:54 +08:00

28 lines
697 B
XML

<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="./tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false">
<testsuites>
<testsuite name="Markdown Test Suite">
<file>./tests/ParserTest.php</file>
<file>./tests/MarkdownTest.php</file>
<file>./tests/MarkdownOLStartNumTest.php</file>
<file>./tests/GithubMarkdownTest.php</file>
<file>./tests/MarkdownExtraTest.php</file>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory>./vendor</directory>
<directory>./tests</directory>
</blacklist>
</filter>
</phpunit>