You are here

public function CookieTest::testFromStringThrowsAnExceptionIfCookieIsNotValid in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/browser-kit/Tests/CookieTest.php \Symfony\Component\BrowserKit\Tests\CookieTest::testFromStringThrowsAnExceptionIfCookieIsNotValid()

File

vendor/symfony/browser-kit/Tests/CookieTest.php, line 85

Class

CookieTest

Namespace

Symfony\Component\BrowserKit\Tests

Code

public function testFromStringThrowsAnExceptionIfCookieIsNotValid() {
  $this
    ->setExpectedException('InvalidArgumentException');
  Cookie::fromString('foo');
}