/**
  * @dataProvider getShortcutsWithFormattedShortcuts
  *
  * @param string $shortcutNotation
  * @param string $formattedShortcut
  */
 public function testGetShortcutNotation($shortcutNotation, $formattedShortcut)
 {
     $shortcut = new EntityShortcut($shortcutNotation);
     $this->assertEquals($formattedShortcut, $shortcut->getShortcutNotation());
 }