renderAllDivisionsFooter() 공개 메소드

renders the footer for all divisions
public renderAllDivisionsFooter ( ) : WriterCollection
리턴 WriterCollection
예제 #1
0
 /**
  * tests rendering the footer after all divisions
  *
  * @group writer
  * @group sourcetest
  */
 public function testRenderAllDivisionsFooter()
 {
     $mockWriter = $this->getMock('\\Browscap\\Writer\\CsvWriter', array(), array(), '', false);
     self::assertSame($this->object, $this->object->addWriter($mockWriter));
     self::assertSame($this->object, $this->object->renderAllDivisionsFooter());
 }
예제 #2
0
 /**
  * tests rendering the footer after all divisions
  *
  * @group writer
  * @group sourcetest
  */
 public function testRenderAllDivisionsFooter()
 {
     $mockWriter = $this->createMock(\Browscap\Writer\CsvWriter::class);
     self::assertSame($this->object, $this->object->addWriter($mockWriter));
     self::assertSame($this->object, $this->object->renderAllDivisionsFooter());
 }