You are here

public function AttributeBagTest::testHas in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-foundation/Tests/Session/Attribute/AttributeBagTest.php \Symfony\Component\HttpFoundation\Tests\Session\Attribute\AttributeBagTest::testHas()

@dataProvider attributesProvider

File

vendor/symfony/http-foundation/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));
}