0
我正在嘗試使用自定義測試套件來定義我的phpunit.xml
配置,該套件以遞歸方式在所需文件夾中加載所有單元測試。具有遞歸目錄表達式的PHPUnit負載測試套件
文件夾路徑的例子:
tests/path/Unit/MyTest.php
tests/path/path/Unit/MyTest.php
tests/path/path/path/Unit/MyTest.php
tests/path/path/path/path/Unit/MyTest.php
...
tests/{.../}/Unit/MyTest.php
我可以定義我的套房是這樣的:
<testsuites>
<testsuite name="Project Unit Test Suite">
<directory>tests/*/Unit</directory>
<directory>tests/*/*/Unit</directory>
<directory>tests/*/*/*/Unit</directory>
<directory>tests/*/*/*/*/Unit</directory>
...
</testsuite>
</testsuites>
有遍歷所有子文件夾,我的表達是隻有一行的方式?
據我所知,你不需要提及的所有子目錄。你只需要'測試 ' –
akond
@akond有一些測試我想排除(功能):) – Aistis
爲什麼不使用''呢? –
akond