logInAs('admin'); $client = $this->getClient(); $client->request('GET', '/about'); $this->assertEquals(200, $client->getResponse()->getStatusCode()); } public function testHowto() { $this->logInAs('admin'); $client = $this->getClient(); $client->request('GET', '/howto'); $this->assertEquals(200, $client->getResponse()->getStatusCode()); } }