Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | /** |
||
20 | * @var array |
||
21 | */ |
||
22 | protected $config; |
||
23 | |||
24 | public function setUp() |
||
25 | { |
||
26 | $configs = array( |
||
27 | 'sonata_media' => array( |
||
28 | 'db_driver' => 'doctrine_orm', |
||
29 | 'default_context' => 'default', |
||
30 | ), |
||
31 | ); |
||
32 | $processor = new Processor(); |
||
33 | $configuration = new Configuration(); |
||
34 | $this->config = $processor->processConfiguration($configuration, $configs); |
||
35 | } |
||
36 | |||
37 | public function testProcess() |
||
48 |