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

コード例 #1
0
ファイル: BackgroundColorTest.php プロジェクト: rcrowe/hippy
 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');
 }