Example #1
0
 public function testString()
 {
     $view = new View();
     $data = array('text' => 'world!');
     $this->assertSame('Hello ' . $data['text'], $view->string('Hello {{text}}', $data));
 }