Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | public function setUp() |
||
28 | { |
||
29 | $this->schemaBuilder = new SchemaGenerator([ |
||
30 | 'totalTypes' => 600, |
||
31 | 'fieldsPerType' => 8, |
||
32 | 'listFieldsPerType' => 2, |
||
33 | 'nestingLevel' => 10, |
||
34 | ]); |
||
35 | |||
36 | $this->schema = $this->schemaBuilder->buildSchema(); |
||
37 | |||
38 | $queryBuilder = new QueryGenerator($this->schema, 0.05); |
||
39 | $this->smallQuery = $queryBuilder->buildQuery(); |
||
40 | } |
||
76 |