測試套件

2018-02-24 15:42 更新

測試套件

帶有一個或多個 <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>

可以用 phpVersionphpVersionOperator 屬性來指定 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 屬性是可選的,其默認值為 >=。

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號