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