public function AttributeBagTest::testGetDefaults

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Attribute/AttributeBagTest.php, line 99

Class

AttributeBagTest
Tests AttributeBag

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Attribute

Code

public function testGetDefaults() {
  $this
    ->assertNull($this->bag
    ->get('user2.login'));
  $this
    ->assertEquals('default', $this->bag
    ->get('user2.login', 'default'));
}