Beispiel #1
0
 /**
  * @covers Pants\Target\Target::getDescription
  * @covers Pants\Target\Target::setDescription
  */
 public function testDescriptionCanBeSet()
 {
     $this->target->setDescription('test');
     $this->assertEquals('test', $this->target->getDescription());
 }