示例#1
0
 /**
  * Test for checkOutputCompression
  *
  * @return void
  */
 public function testCheckOutputCompression()
 {
     $this->object->set('OBGzip', 'auto');
     $this->object->set('PMA_USR_BROWSER_AGENT', 'IE');
     $this->object->set('PMA_USR_BROWSER_VER', 6);
     $this->object->checkOutputCompression();
     $this->assertFalse($this->object->get("OBGzip"));
     $this->object->set('OBGzip', 'auto');
     $this->object->set('PMA_USR_BROWSER_AGENT', 'MOZILLA');
     $this->object->set('PMA_USR_BROWSER_VER', 5);
     $this->object->checkOutputCompression();
     $this->assertTrue($this->object->get("OBGzip"));
 }