Esempio n. 1
0
 /**
  * @see \Tbs\DocBlock\Collection\Parsed::setContent()
  * @dataProvider providerContent
  */
 public function testSetContent($content)
 {
     $rs = $this->object->setContent($content);
     $this->assertInstanceOf('\\Tbs\\DocBlock\\Collection\\Parsed', $rs);
     $rs = $this->object->getContent();
     $this->assertInternalType('string', $rs);
     $this->assertEquals(trim($content), $rs);
 }