教你一步一步写一个phpunit testcase(15)

发表于:2017-06-01来源:叶左左作者:叶左左点击数: 标签:PHPUnit
setUp ()- testReserve ()- tearDown ()- ...- setUp ()- testDuplicatedReservationWithException 设定phpunit 在前面使用phpunit工具来执行测试时,有用到--bootstrap,在执行

setUp()->testReserve()->tearDown()->...->setUp()->testDuplicatedReservationWithException

设定phpunit

在前面使用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