/**
  * @dataProvider getShortcutsWithEntityNamespaces
  *
  * @param string $shortcutNotation
  * @param string $entityNamespace
  */
 public function testGetEntityNamespace($shortcutNotation, $entityNamespace)
 {
     $shortcut = new EntityShortcut($shortcutNotation);
     $this->assertEquals($entityNamespace, $shortcut->getEntityNamespace());
 }