= Examples =
Please fill out all fields according to the description
You must provide a title.
Inheritance: extends Neos\FluidAdaptor\Core\ViewHelper\AbstractConditionViewHelper
 /**
  * @test
  */
 public function queriesResultForPropertyIfPropertyPathIsGiven()
 {
     $resultMock = $this->createMock(\Neos\Error\Messages\Result::class);
     $resultMock->expects($this->once())->method('forProperty')->with('foo.bar.baz')->will($this->returnValue(new Result()));
     /** @var $requestMock \PHPUnit_Framework_MockObject_MockObject */
     $requestMock = $this->request;
     $requestMock->expects($this->once())->method('getInternalArgument')->with('__submittedArgumentValidationResults')->will($this->returnValue($resultMock));
     $this->viewHelper->render('foo.bar.baz');
 }