You are here

public function CookieTest::testFromStringThrowsAnExceptionIfUrlIsNotValid in Zircon Profile 8

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

File

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

Class

CookieTest

Namespace

Symfony\Component\BrowserKit\Tests

Code

public function testFromStringThrowsAnExceptionIfUrlIsNotValid() {
  $this
    ->setExpectedException('InvalidArgumentException');
  Cookie::fromString('foo=bar', 'foobar');
}