/**
  * @expectedException InvalidArgumentException
  */
 public function testReorderingWithWrongItemNames()
 {
     $factory = $this->buildFactory();
     $menu = new MenuItem('root', $factory);
     $menu->addChild('c1');
     $menu->addChild('c2');
     $menu->reorderChildren(array('c1', 'c3'));
 }