예제 #1
0
 /**
  * @test
  */
 public function setDescriptionSetsDescription()
 {
     $expected = 'desc';
     $this->proxy->setDescription($expected);
     $actual = $this->proxy->_get('description');
     $this->assertEquals($expected, $actual);
 }