コード例 #1
0
 public function testBackgroundColor()
 {
     $format = new Format();
     $this->assertNull($format->getBackgroundColor());
     $this->assertSame($format, $format->setBackgroundColor("test-color"));
     $this->assertEquals("test-color", $format->getBackgroundColor());
 }