1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00
parsedown/phpunit.xml.dist
Haralan Dobrev 6f1fac9823 Add Standard Markdown testsuite.
You could run the Parsedown testsuite only with:
    phpunit --testsuite ParsedownTests

And you could run the Standard Markdown one with:
    phpunit --testsuite StandardMarkdown

See more at http://standardmarkdown.com/
2014-09-05 23:12:33 +03:00

12 lines
353 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="test/bootstrap.php" colors="true">
<testsuites>
<testsuite name="ParsedownTests">
<file>test/Test.php</file>
</testsuite>
<testsuite name="StandardMarkdown">
<file>test/standard-markdown/StandardMarkdownTest.php</file>
</testsuite>
</testsuites>
</phpunit>