public function AutoExpireFlashBagTest::testSetAll

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Flash/AutoExpireFlashBagTest.php, line 132

Class

AutoExpireFlashBagTest
AutoExpireFlashBagTest

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Flash

Code

public function testSetAll() {
  $this->bag
    ->setAll(array(
    'a' => 'first',
    'b' => 'second',
  ));
  $this
    ->assertFalse($this->bag
    ->has('a'));
  $this
    ->assertFalse($this->bag
    ->has('b'));
}