コード例 #1
0
 public function testTextFont()
 {
     $format = new Format();
     $this->assertNull($format->getTextFont());
     $this->assertSame($format, $format->setTextFont("test-font"));
     $this->assertEquals("test-font", $format->getTextFont());
 }