Error when I try run PHPUnit from PhpStorm
composer-php, php, phpstorm, phpunit, testing
Solution
I found solution about this problem.
In Edit configurations in directory I set path to my tests catalog (`/path/to/my/project/tests`), after this tests are running properly.
Problem
I have little problem when I'm trying to run PHPUnit test in IDE PhpStorm. I use composer file which looks: ``` { "require": { "phpunit/phpunit": "3.7.19" } } ``` Now when I run test I recive exception: `PHP Fatal error: Uncaught exception 'PHPUnit_Framework_Exception' with message 'Class "PHPUnit_Extensions_RepeatedTest" does not extend PHPUnit_Framework_TestCase.'` What is wrong? When I included pear installed version test working OK. //EDIT Sample test class: ``` class ReaderTest extends PHPUnit_Framework_TestCase { /** * @test */ public function shouldGetReadedValue () { $this->assertTrue(true); } } ``` //EDIT2 Trace: ``` /usr/bin/php /tmp/ide-phpunit.php --no-configuration /path/to/my/project Testing started at 14:53 ... PHP Fatal error: Uncaught exception 'PHPUnit_Framework_Exception' with message 'Class "PHPUnit_Extensions_RepeatedTest" does not extend PHPUnit_Framework_TestCase.' in /path/to/my/project/vendor/phpunit/phpunit/PHPUnit/Framework/TestSuite.php:183 Stack trace: #0 /path/to/my/project/vendor/phpunit/phpunit/PHPUnit/Framework/TestSuite.php(315): PHPUnit_Framework_TestSuite->__construct(Object(ReflectionClass)) #1 /path/to/my/project/vendor/phpunit/phpunit/PHPUnit/Framework/TestSuite.php(389): PHPUnit_Framework_TestSuite->addTestSuite(Object(ReflectionClass)) #2 /path/to/my/project/vendor/phpunit/phpunit/PHPUnit/Framework/TestSuite.php(416): PHPUnit_Framework_TestSuite->addTestFile('/var/www/php-sh...') #3 /path/to/my/project/vendor/phpunit/phpunit/PHPUnit/Runner/BaseTestRunner.php(96): PHPUnit_Framework_TestSuite->addTestFiles(Array) #4 /path/to/my/project/vendor/phpunit/phpunit/PHPUnit/TextUI/Command.php(150): PHPUnit_Runner_BaseTestRunner->getTest('/var/www/php-sh...', '', A in /path/to/my/project/vendor/phpunit/phpunit/PHPUnit/Framework/TestSuite.php on line 183 Process finished with exit code 255 ```