| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 12 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 1 | 
| 1 | <?php | ||
| 21 | public function testBuildAddCompilerPass() | ||
| 22 |     { | ||
| 23 | $container = $this->getMock(ContainerBuilder::class); | ||
| 24 | $container | ||
| 25 | ->expects($this->once()) | ||
| 26 |             ->method('addCompilerPass') | ||
| 27 | ->with($this->isInstanceOf(ExpressionBuilderPass::class)) | ||
| 28 | ; | ||
| 29 | |||
| 30 | $bundle = new DoctrineSpecificationBundle(); | ||
| 31 | $bundle->build($container); | ||
| 32 | } | ||
| 33 | } | ||
| 34 |