Example #1
0
 public function testListenerResponse()
 {
     $c = new Container();
     $ctrl = new Controller($c);
     $ctrlS = $ctrl->setListenerResponse('foo');
     $this->assertEquals($ctrl, $ctrlS);
     $this->assertEquals('foo', $ctrl->getListenerResponse());
 }