setUp()->testReserve()->tearDown()->...->setUp()->testDuplicatedReservationWithException
在前面使用phpunit工具来执行测试时,有用到--bootstrap,在执行测试前先执行vendor/autoload.php来注入自动加载的功能。但是每次执行测试,都要加上参数有点麻烦,phpunit可以使用XML来设定测试。
phpunit.xml的内容如下:
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="../vendor/autoload.php" verbose="true">
<testsuite>
<directory suffix="Test.php">../tests</directory>
</testsuite
原文转自:http://www.jianshu.com/p/ba6829a6f3ec