Basho\Tests\Riak\HllTest::testType PHP Méthode

testType() public méthode

public testType ( )
    public function testType()
    {
        $this->assertEquals('hll', Hll::TYPE);
        $crdt = new Hll([], '');
        $this->assertEquals('hll', $crdt->getType());
    }
HllTest