getBody(); self::assertSame(StatusCodeInterface::STATUS_OK, $response->getStatusCode()); self::assertStringStartsWith('window.Messages = {', $actual); self::assertStringEndsWith('};', $actual); $json = substr($actual, strlen('window.Messages = '), -1); $array = json_decode($json, true); self::assertIsArray($array); self::assertArrayHasKey('strDoYouReally', $array); self::assertSame('Do you really want to execute "%s"?', $array['strDoYouReally']); } }