Example #1
0
 /**
  * @testdox setContent() updates the template's content
  */
 public function testSetContent()
 {
     $template = new Template('<hr/>');
     $template->setContent('<br/>');
     $this->assertEquals('<br/>', $template);
 }