Basho\Tests\Riak\HllTest::testType PHP Method

testType() public method

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