PopTest\Code\DocblockTest::testSetAndGetIndent PHP Method

testSetAndGetIndent() public method

public testSetAndGetIndent ( )
    public function testSetAndGetIndent()
    {
        $d = DocblockGenerator::factory('This is the description');
        $d->setIndent('    ');
        $this->assertEquals('    ', $d->getIndent());
    }