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