Completed
Push — refonte ( 7173e3...bffa4c )
by Arnaud
02:33
created

FieldCompilerPassTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 11
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace LAG\AdminBundle\Tests\DependencyInjection\CompilerPass;
4
5
use LAG\AdminBundle\Tests\AdminTestBase;
6
7
class FieldCompilerPassTest extends AdminTestBase
8
{
9
    /**
10
     * Process method should add the definition of the tagged services to the data providers factory.
11
     */
12
    public function testProcess()
13
    {
14
        // TODO WIP
15
        $this->assertTrue(true);
16
    }
17
}
18