Exemplo n.º 1
0
 /**
  * Не понятно пока, почему тест не проходит
  */
 public function testSetGetContent()
 {
     $content = 'test';
     $this->article->setContent($content);
     $result = $this->article->getContent();
     $this->assertEquals($content, $result);
 }