view = new TestHttpView($this->container); $this->friend = new Friend($this->view); } public function testRedirect() { $this->friend->redirect('/foo', 303); $this->assertEquals('/foo', $this->friend->response->headers->get('Location')); $this->assertEquals(303, $this->friend->response->status->getCode()); } }