renderSectionHeader() 공개 메소드

renders the header for a section
public renderSectionHeader ( string $sectionName ) : Browscap\Writer\WriterInterface
$sectionName string
리턴 Browscap\Writer\WriterInterface
예제 #1
0
 /**
  * tests rendering the header of one section
  *
  * @group writer
  * @group sourcetest
  */
 public function testRenderSectionHeader()
 {
     self::assertSame($this->object, $this->object->renderSectionHeader('test'));
     self::assertSame('', file_get_contents($this->file));
 }