PopTest\Code\DocblockTest::testSetAndGetIndent PHP Méthode

testSetAndGetIndent() public méthode

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