示例#1
0
 /**
  * {@inheritdoc}
  */
 public function getDescription()
 {
     return $this->raw->getDescription();
 }
示例#2
0
 public function it_returns_its_description(Issue $issue)
 {
     $issue->getDescription()->shouldBeCalled()->willReturn('bar');
     $this->getDescription()->shouldBe('bar');
 }