Esempio n. 1
0
 /**
  * @see \Tbs\DocBlock\Collection\Parsed::setDescription()
  * @dataProvider providerDescription
  */
 public function testSetDescription($description)
 {
     $rs = $this->object->setDescription($description);
     $this->assertInstanceOf('\\Tbs\\DocBlock\\Collection\\Parsed', $rs);
     $rs = $this->object->getDescription();
     $this->assertInternalType('string', $rs);
     $this->assertEquals(trim($description), $rs);
 }