/**
  * @dataProvider getShortcutsWithRepositoryNamespaces
  *
  * @param string $shortcutNotation
  * @param string $repositoryNamespace
  */
 public function testGetRepositoryNamespace($shortcutNotation, $repositoryNamespace)
 {
     $shortcut = new EntityShortcut($shortcutNotation);
     $this->assertEquals($repositoryNamespace, $shortcut->getRepositoryNamespace());
 }