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

test_value_exists_returns_true() public method

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