在xampp窗口上配置phpunit

时间:2014-03-26 00:24:50

标签: php phpunit

我试图配置phpunit,但它无法正常工作! - 我第一次使用phpunit -

我在Windows 7 -xampp服务器上通过pear安装了它,并且工作正常,问题是phpunit.xml文件似乎无法正常工作。

enter image description here

你可以看到位于我项目根目录的phpunit.xml但是找不到我的测试:(。如果我直接测试它运行得很好。这是我的phpunit.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true">
<testsuites>
    <testsuite name="Application Test Suite">
        <directory>./test/</directory>
    </testsuite>
</testsuites>
</phpunit>

我的项目是位于E:\ xampp \ htdocs \ ehit的CodeIgniter框架 目录结构 -ehit - 应用 - 系统 --test

所以我做错了什么?

1 个答案:

答案 0 :(得分:0)

假设您在codeigniter中使用CIUnit,请尝试将路径添加到bootstrap,如:

<phpunit 
    colors="true" 
    bootstrap="/application/third_party/CIUnit/bootstrap_phpunit.php">

    <testsuites>
        <testsuite name="Application Test Suite">
            <directory>./test/</directory>
        </testsuite>
    </testsuites>
</phpunit>