public function MetadataBagTest::testGetLifetime

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/MetadataBagTest.php, line 85

Class

MetadataBagTest
Test class for MetadataBag.

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage

Code

public function testGetLifetime() {
  $bag = new MetadataBag();
  $array = array(
    MetadataBag::CREATED => 1234567,
    MetadataBag::UPDATED => 12345678,
    MetadataBag::LIFETIME => 1000,
  );
  $bag
    ->initialize($array);
  $this
    ->assertEquals(1000, $bag
    ->getLifetime());
}