Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | public function testGetMutations() |
||
28 | { |
||
29 | $aggregateQueryProvider = new AggregateQueryProvider([$this->getMockQueryProvider(), $this->getMockQueryProvider()]); |
||
30 | $this->assertCount(2, $aggregateQueryProvider->getMutations()); |
||
31 | |||
32 | $aggregateQueryProvider = new AggregateQueryProvider([]); |
||
33 | $this->assertCount(0, $aggregateQueryProvider->getMutations()); |
||
34 | } |
||
45 |