/**
  * @Given /^I add new event with name "([^"]*)" in "([^"]*)" locale$/
  */
 public function iAddNewEventWithNameInLocale($eventName, $locale)
 {
     $event = new Event();
     $event->setLocale($locale);
     $event->setName($eventName);
     $event->setAgreement(new \SplFileInfo(__DIR__ . '/../../features/fixtures/test_file.txt'));
     $manager = $this->getDoctrineManager();
     $manager->persist($event);
     $manager->flush();
     $manager->clear();
 }