Extension\BuiltIn\IntMethodTest::testTransforms PHP Method

testTransforms() public method

public testTransforms ( )
    public function testTransforms()
    {
        $t = new IntMethods();
        $this->assertSame(decbin(255), $t->getBinary(255));
        $this->assertSame(dechex(255), $t->getHex(255));
        $this->assertSame(decoct(255), $t->getOctal(255));
    }