public function AttributeBagTest::testHas

@dataProvider attributesProvider

File

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

Class

AttributeBagTest
Tests AttributeBag

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Attribute

Code

public function testHas($key, $value, $exists) {
  $this
    ->assertEquals($exists, $this->bag
    ->has($key));
}