运行测试仅在测试文件夹中找到

时间:2016-03-23 16:44:30

标签: phpunit

这是我的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文件夹中运行测试。

0 个答案:

没有答案