Example #1
0
 /**
  * @expectedException \Symfony\Component\Workflow\Exception\LogicException
  * @expectedExceptionMessage Place "d" cannot be the initial place as it does not exist.
  */
 public function testSetInitialPlaceAndPlaceIsNotDefined()
 {
     $definition = new Definition();
     $definition->setInitialPlace('d');
 }