Collections\Tests\Dictionary\ExistsTest::test_key_exists_returns_true PHP Method

test_key_exists_returns_true() public method

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