Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why I'm getting this PHP error?

Fatal error: Class 'PHPUnit_Framework_TestCase' not found in ...
share|improve this question
You are not providing any information at all. – Pekka 웃 May 19 '11 at 22:55

2 Answers

up vote 23 down vote accepted

The PHPUnit documentation says used to say to include/require PHPUnit/Framework.php, as follows:

require_once ('PHPUnit/Framework/TestCase.php');

UPDATE

As of PHPUnit 3.5, there is a built-in autoloader class that will handle this for you:

require_once 'PHPUnit/Autoload.php';

Thanks to Phoenix for pointing this out!

share|improve this answer
Ah, thanks. This is the point. – Alvin May 19 '11 at 23:13
11  
PHPUnit 3.5 comes with its own autoloader that might help keep things simple: require_once 'PHPUnit/Autoload.php' – todofixthis May 20 '11 at 0:30
2  
Where does it say that? – B Seven Nov 13 '11 at 2:25
1  
I concur that require_once('PHPUnit/Autoload.php') is the best practice. – Paul Maidment Dec 5 '11 at 12:24
1  
I don't have both PHPUnit/Autoload.php and PHPUnit/Framework/TestCase.php, my folder is kind of like PHPUnit/Framework/MockObject – Phelios Dec 15 '11 at 4:35
show 2 more comments

Assumption: Phpunit (3.7) is available in the console environment.

Action:

Enter the following command in the console:

SHELL> phpunit "{{PATH TO THE FILE}}"

Comments: You do not need to include anything in the new versions of PHPUnit unless you do not want to run in the console. For example, running tests in the browser.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.