mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
6f1fac9823
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/
12 lines
353 B
XML
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>
|