rcrowe\Hippy\Message::setBackgroundColor PHP Method

setBackgroundColor() public method

public setBackgroundColor ( $color )
    public function setBackgroundColor($color)
    {
        // throw exception here if not a valid color
        $this->background_color = $color;
    }

Usage Example

Esempio n. 1
0
 public function testSet()
 {
     $message = new Message(false, 'random');
     $this->assertEquals($message->getBackgroundColor(), 'random');
     $message = new Message(false, 'red');
     $message->setBackgroundColor('random');
     $this->assertEquals($message->getBackgroundColor(), 'random');
 }