Example #1
0
 public function testGetEscaped()
 {
     $this->view->someVar = '&';
     $this->assertEquals('&', $this->view->getEscaped('someVar'));
     $this->assertEquals('', $this->view->getEscaped('someNonExistingVar'));
 }