Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function testCompleteFantasyOrder() |
||
19 | { |
||
20 | $fantasyOrder = ['fantaisie', 'auteur', 'titre', 'année']; |
||
21 | $cleanOrder = ['bla', 'first', 'auteur', 'titre', 'sous-titre', 'année', 'fantaisie', 'fantaisie2']; |
||
22 | |||
23 | $this::assertSame( |
||
24 | ['bla', 'first', 'fantaisie', 'fantaisie2', 'auteur', 'titre', 'sous-titre', 'année'], |
||
25 | $this->completeFantasyOrder($fantasyOrder, $cleanOrder) |
||
26 | ); |
||
30 |