em->persist($contact); $this->em->flush(); $this->client->request(Request::METHOD_PUT, '/api/devices/99999/edit', [ 'device' => 'desktop', 'deviceOsName' => 'Ubuntu', 'deviceOsShortName' => 'UBT', 'deviceOsPlatform' => 'x64', 'lead' => $contact->getId(), ]); $clientResponse = $this->client->getResponse(); Assert::assertSame(Response::HTTP_CREATED, $clientResponse->getStatusCode()); } }