public function SessionTest::testMigrateDestroy

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/SessionTest.php, line 168

Class

SessionTest
SessionTest

Namespace

Symfony\Component\HttpFoundation\Tests\Session

Code

public function testMigrateDestroy() {
  $this->session
    ->set('migrate', 333);
  $this->session
    ->migrate(true);
  $this
    ->assertEquals(333, $this->session
    ->get('migrate'));
}