public function testToArray()
 {
     $alpha = 20;
     $this->background->setAlpha($alpha);
     $color = '#ff0000';
     $this->background->color($color);
     $options = $this->background->toArray();
     $this->assertCount(2, $options);
 }