Example #1
0
 public function testSetDescriptionWithAdditionalParams()
 {
     $input = "this is my description";
     $this->target->setDescription($input, ['p1', 'p2']);
     $this->assertAttributeSame(['description' => $input, 'description_params' => ['p1', 'p2']], 'options', $this->target);
 }