| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function testSorting(): void |
||
| 14 | { |
||
| 15 | $result = _em()->getRepository(User::class)->getAclFilter()->runWithoutAcl(fn () => $this->getSortedQueryResult(_types(), Product::class, 'illustration')); |
||
| 16 | |||
| 17 | self::assertSame([ |
||
| 18 | 3000, |
||
| 19 | 3001, |
||
| 20 | 3002, |
||
| 21 | 3003, |
||
| 22 | 3004, |
||
| 23 | 3005, |
||
| 24 | 3006, |
||
| 25 | 3007, |
||
| 26 | 3008, |
||
| 27 | 3009, |
||
| 28 | 3010, |
||
| 29 | 3011, |
||
| 30 | ], $result); |
||
| 31 | } |
||
| 33 |