Example #1
0
 public function testExportRenderers()
 {
     /*
      * NEVER define default export renderer -> because the user cant remove them after!
      */
     $this->assertEquals([], $this->grid->getExportRenderers());
     $this->grid->setExportRenderers(['tcpdf' => 'PDF']);
     $this->assertEquals(['tcpdf' => 'PDF'], $this->grid->getExportRenderers());
 }