accented letters in majascule

This commit is contained in:
2021-10-06 15:52:11 +02:00
parent 72d67624a2
commit 7dd42c3fa2
2 changed files with 10 additions and 9 deletions

View File

@@ -52,9 +52,9 @@ class PersonCreateEventTest extends TestCase
public function generateNames(): iterator
{
yield ['julie', 'Julie', 'lenaerts', 'LENAERTS'];
yield ['émelie-marie', 'Émelie-Marie', 'lenaerts', 'LENAERTS'];
yield ['jean-marie', 'Jean-Marie', 'lenaerts', 'LENAERTS'];
yield ['vinCENT', 'Vincent', 'van gogh', 'VAN GOGH'];
yield ['vinCENT', 'Vincent', 'fastré', 'FASTRÉ'];
yield ['Vincent', 'Vincent', 'van Gogh', 'VAN GOGH'];
yield ['André marie', 'André Marie', 'Bah', 'BAH'];
}