Skip to content
Snippets Groups Projects
Commit 31174683 authored by Francesco Placella's avatar Francesco Placella
Browse files

Issue #3088518 by alexpott, Berdir: Can not run tests using phpunit with the --group option

parent 81be916b
No related branches found
No related tags found
No related merge requests found
......@@ -8,9 +8,6 @@
use Doctrine\Common\Annotations\SimpleAnnotationReader;
use PHPUnit\Framework\TestCase;
//Some class named Entity in the global namespace
include __DIR__ .'/DCOM58Entity.php';
/**
* This class is a near-copy of
* \Doctrine\Tests\Common\Annotations\Ticket\DCOM58Test, which is part of the
......@@ -18,9 +15,19 @@
* version 1.2.7.
*
* @group DCOM58
*
* Run this test in a separate process as it includes code that might have side
* effects.
* @runTestsInSeparateProcesses
*/
class DCOM58Test extends TestCase
{
public function setUp()
{
// Some class named Entity in the global namespace.
include __DIR__ .'/DCOM58Entity.php';
}
public function testIssue()
{
$reader = new AnnotationReader();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment