/**
  * @expectedException        RuntimeException
  * @expectedExceptionMessage Cannot nest ifTrue or ifFalse call
  */
 public function testIfFalseCombinationNested4()
 {
     $this->formMapper->ifTrue(false);
     $this->formMapper->ifFalse(true);
 }