@covers PHP_Token_FUNCTION::getDocblock
public function testGetDocblock() {
$this
->assertNull($this->functions[0]
->getDocblock());
$this
->assertEquals("/**\n * @param Baz \$baz\n */", $this->functions[1]
->getDocblock());
$this
->assertEquals("/**\n * @param Foobar \$foobar\n */", $this->functions[2]
->getDocblock());
$this
->assertNull($this->functions[3]
->getDocblock());
$this
->assertNull($this->functions[4]
->getDocblock());
}