Example #1
0
 public function testGetAllOptions()
 {
     $options = $this->model->getAllOptions();
     $this->assertInternalType('array', $options);
     $this->assertNotEmpty($options);
     foreach ($options as $option) {
         $this->assertArrayHasKey('label', $option);
         $this->assertArrayHasKey('value', $option);
     }
 }