Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP Fatal error: Class 'CTestCase' not found in

Tags:

php

phpunit

yii

Just trying to run a simple test on my local box but i get the following error:

PHP Fatal error:  Class 'CTestCase' not found in ....

when running

$ phpunit UserTest

I guess my configuration must be missing something? I just can't figure out what.

Using:

OSX 10.6.7

PHP 5.3.4

PHPUnit 3.5.13

Yii 1.1.7

like image 910
keeg Avatar asked Dec 13 '22 12:12

keeg


1 Answers

Make sure you run phpunit at the same directory where your phpunit.xml is. :)

like image 147
jovani Avatar answered Dec 15 '22 02:12

jovani