renderSectionHeader() public method

renders the header for a section
public renderSectionHeader ( string $sectionName ) : Browscap\Writer\WriterInterface
$sectionName string
return Browscap\Writer\WriterInterface
コード例 #1
0
 /**
  * tests rendering the header of one section
  *
  * @group writer
  * @group sourcetest
  */
 public function testRenderSectionHeaderIfSilent()
 {
     $this->object->setSilent(true);
     self::assertSame($this->object, $this->object->renderSectionHeader('test'));
     self::assertSame('', file_get_contents($this->file));
 }