Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
38 | protected function setUp(): void |
||
39 | { |
||
40 | $this->qb = new QueryBuilder(); |
||
41 | $this->qbTester = new QueryBuilderTester($this->qb); |
||
42 | |||
43 | $this->proxyQuery = $this->createMock(ProxyQuery::class); |
||
44 | $this->proxyQuery->expects($this->any()) |
||
45 | ->method('getQueryBuilder') |
||
46 | ->willReturn($this->qb); |
||
47 | } |
||
48 | } |
||
49 |