只是尝试在我的本地方框上运行一个简单的测试,但是我收到以下错误:
PHP Fatal error: Class 'CTestCase' not found in ....
运行时
$ phpunit UserTest
我想我的配置一定缺少什么?我只是无法弄清楚是什么。
使用:
OSX 10.6.7
PHP 5.3.4
PHPUnit 3.5.13
Yii 1.1.7
答案 0 :(得分:13)
确保在phpunit.xml所在的同一目录下运行phpunit。 :)
答案 1 :(得分:0)
错误消息告诉您无法找到类CTestCase
。 PHPUnit在命令行上接受--include-path
选项。你可以尝试这样的事情:
$ phpunit --include-path .:/path/to/dir/containing/CTestCase UserTest
答案 2 :(得分:0)
我为我找到了解决方案。但我不确定这是否对你有用。
以下是解决方案的网址
http://www.yiiframework.com/forum/index.php/topic/4728-running-unit-tests-on-windows-problem/