コード例 #1
0
ファイル: BookmarkTest.php プロジェクト: punktde/pt_extlist
 /**
  * @test
  */
 public function setDescriptionSetsDescription()
 {
     $expected = 'desc';
     $this->proxy->setDescription($expected);
     $actual = $this->proxy->_get('description');
     $this->assertEquals($expected, $actual);
 }