Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 知乎專欄 | 視頻教程 | About

26.2. phpunit xml

		
<?xml version="1.0" encoding="UTF-8"?>
<phpunit>

<testsuites>
  <testsuite name="My Test Suite">
    <directory>./</directory>
    <file>test.php</file>
    <exclude>/path/to/exclude</exclude>
  </testsuite>
</testsuites>

</phpunit>
		
		

# ../vendor/bin/phpunit --coverage-html ./report -c phpunit.xml