这是我的phpunit.xml
:
<phpunit bootstrap="test/bootstrap.php"
colors="true">
<testsuites>
<testsuite name="MageScan Unit Tests">
<directory>test</directory>
</testsuite>
</testsuites>
</phpunit>
我的项目结构
$ find src test -type f
src/bootstrap.php
src/MageScan/Application.php
src/MageScan/Command/Scan/Command.php
src/MageScan/Command/Scan/MagentoVersion.php
src/MageScan/PHPUnit/TestCase.php
test/bootstrap.php
test/MageScan/Command/Scan/MagentoVersionTest.php
当我运行phpunit
时,我收到错误
1)警告
在“MageScan \ PHPUnit \ TestCase”类中找不到任何测试。
为什么要在这堂课中寻找考试?根据我的testsuite配置,它应该只在test
文件夹中运行测试。