我试图配置phpunit,但它无法正常工作! - 我第一次使用phpunit -
我在Windows 7 -xampp服务器上通过pear安装了它,并且工作正常,问题是phpunit.xml
文件似乎无法正常工作。
你可以看到位于我项目根目录的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
所以我做错了什么?
答案 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>