示例#1
0
 /**
  * @covers Dropdown::getValues
  */
 public function testGetValue()
 {
     $data = array("Californie", "Paris");
     $this->drop = $this->drop->setValue($data);
     $actual = $this->drop->getValues();
     $this->assertEquals($data, $actual);
 }