Skip to content

Instantly share code, notes, and snippets.

@228vit
Created September 8, 2016 15:41
Show Gist options
  • Save 228vit/3042f195d30083a0f44dca5cad1907e8 to your computer and use it in GitHub Desktop.
Save 228vit/3042f195d30083a0f44dca5cad1907e8 to your computer and use it in GitHub Desktop.
Symfony: Unit test with cookie
$client = static::createClient();
$cookie = new Cookie('name', 'value', time() + 3600 * 24 * 7, '/', null, false, false);
$client->getCookieJar()->set($cookie);
$crawler = $client->request('GET', '/', []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment