public function SessionTest::testMigrate

File

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

Class

SessionTest
SessionTest

Namespace

Symfony\Component\HttpFoundation\Tests\Session

Code

public function testMigrate() {
  $this->session
    ->set('migrate', 321);
  $this->session
    ->migrate();
  $this
    ->assertEquals(321, $this->session
    ->get('migrate'));
}