Ejemplo n.º 1
0
 /**
  * @test
  */
 public function templateVariables()
 {
     $this->view->set('foo', 'bar');
     $this->assertSame('bar', $this->view->get('foo'));
     $this->assertSame('bar', $this->view->get('foo', 'baz'));
     $this->assertSame('baz', $this->view->get('_foo', 'baz'));
 }