W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
帶有一個或多個 <testsuite>
子元素的 <testsuites>
元素用于將測試套件及測試用例組合出新的測試套件。
<testsuites>
<testsuite name="My Test Suite">
<directory>/path/to/*Test.php files</directory>
<file>/path/to/MyTest.php</file>
<exclude>/path/to/exclude</exclude>
</testsuite>
</testsuites>
可以用 phpVersion
和 phpVersionOperator
屬性來指定 PHP 版本需求。在以下例子中,僅當 PHP 版本至少為 5.3.0 時才會將 /path/to/*Test.php
文件與 /path/to/MyTest.php
文件添加到測試套件中。
<testsuites>
<testsuite name="My Test Suite">
<directory suffix="Test.php" phpVersion="5.3.0" phpVersionOperator=">=">/path/to/files</directory>
<file phpVersion="5.3.0" phpVersionOperator=">=">/path/to/MyTest.php</file>
</testsuite>
</testsuites>
phpVersionOperator
屬性是可選的,其默認值為 >=
。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: