/**
  * @param $parts
  * @dataProvider identifierPartsProvider
  */
 public function testFormatCamelCaseWithAcronyms($parts)
 {
     $this->assertSame('anIdentifier1ACRNM', Formatter::formatCamelCaseWithAcronyms($parts));
 }