client->request(Request::METHOD_GET, '/s/focus'); $response = $this->client->getResponse(); $this->assertEquals(Response::HTTP_OK, $response->getStatusCode()); } public function testNewActionIsSuccessful(): void { $this->client->request(Request::METHOD_GET, '/s/focus/new'); $response = $this->client->getResponse(); $this->assertEquals(Response::HTTP_OK, $response->getStatusCode()); } }