Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function testFindAllWithinSeasons() |
||
12 | { |
||
13 | self::bootKernel(); |
||
14 | $performances = self::$container |
||
15 | ->get(PerformanceRepository::class) |
||
16 | ->findAllWithinSeasons(); |
||
17 | |||
18 | $this->assertNotEmpty($performances); |
||
19 | $this->allPerformancesHasAtLeastOneSeason($performances); |
||
20 | } |
||
21 | |||
32 |