Ejemplo n.º 1
0
    public function testSummaryParsing()
    {
        $body = '/**
 * Summary
 * 
 * the description is here
 */
';
        $block = new DocBlock($body);
        $block->parseSummary();
        $this->assertEquals('Summary', $block->getSummary());
        $this->assertEquals('the description is here', $block->getDescription());
        $this->assertEquals($body, $block->toString());
    }