client = $this->createClient(); } public function testRouteSlash() { $crawler = $this->client->request('GET', '/'); $response = $this->client->getResponse(); $this->assertEquals(302, $response->getStatusCode()); $this->assertEquals('/login/', $response->headers->get('location')); } }