Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
35 | public function setUp() |
||
36 | { |
||
37 | $this->qb = new QueryBuilder(); |
||
38 | $this->qbTester = new QueryBuilderTester($this->qb); |
||
39 | |||
40 | $this->proxyQuery = $this->getMockBuilder('Sonata\DoctrinePHPCRAdminBundle\Datagrid\ProxyQuery') |
||
41 | ->disableOriginalConstructor() |
||
42 | ->getMock(); |
||
43 | $this->proxyQuery->expects($this->any()) |
||
44 | ->method('getQueryBuilder') |
||
45 | ->will($this->returnValue($this->qb)); |
||
46 | } |
||
47 | } |
||
48 |