public function CookieTest::testCookieIsNotCleared

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/CookieTest.php, line 120

Class

CookieTest
CookieTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testCookieIsNotCleared() {
  $cookie = new Cookie('foo', 'bar', time() + 3600 * 24);
  $this
    ->assertFalse($cookie
    ->isCleared(), '->isCleared() returns false if the cookie did not expire yet');
}