Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function testFindAllNotEmpty() |
||
12 | { |
||
13 | self::bootKernel(); |
||
14 | $seasons = self::$container |
||
15 | ->get(RepertoireSeasonRepository::class) |
||
16 | ->findAllNotEmpty(); |
||
17 | |||
18 | $this->assertIsArray($seasons); |
||
19 | $this->assertNotEmpty($seasons); |
||
20 | $this->assertInstanceOf(RepertoireSeason::class, $seasons[0]); |
||
21 | } |
||
22 | |||
34 |