| 1 | <?php  | 
            ||
| 8 | class ConfigurationTest extends TestCase  | 
            ||
| 9 | { | 
            ||
| 10 | /**  | 
            ||
| 11 | * Whether or not this test should preserve the global state when  | 
            ||
| 12 | * running in a separate PHP process.  | 
            ||
| 13 | *  | 
            ||
| 14 | * PHPUnit hack to avoid currently loaded classes to leak to  | 
            ||
| 15 | * testGetConfigTreeBuilderDoNotUseDoctrineCommon that is run in separate process.  | 
            ||
| 16 | *  | 
            ||
| 17 | * @var bool  | 
            ||
| 18 | */  | 
            ||
| 19 | protected $preserveGlobalState = false;  | 
            ||
| 20 | |||
| 21 | /**  | 
            ||
| 22 | * @runInSeparateProcess  | 
            ||
| 23 | */  | 
            ||
| 24 | public function testGetConfigTreeBuilderDoNotUseDoctrineCommon()  | 
            ||
| 30 | }  | 
            ||
| 31 |