Collections\Tests\Dictionary\ExistsTest::test_key_exists_returns_false PHP Метод

test_key_exists_returns_false() публичный Метод

    public function test_key_exists_returns_false()
    {
        $d = (new Dictionary('string', 'int'))->add('a', 1);
        $this->assertFalse($d->exists('b'));
    }