Example #1
0
 public function testAreaFocusColor()
 {
     $entry = new Entry();
     $this->assertNull($entry->getAreaFocusColor());
     $this->assertSame($entry, $entry->setAreaFocusColor("test-color"));
     $this->assertEquals("test-color", $entry->getAreaFocusColor());
 }