/**
  * testPhpinfo
  * 
  * @see 0007182: add "server info" section to admin
  */
 public function testPhpinfo()
 {
     $info = $this->_json->getServerInfo();
     $this->assertContains("phpinfo()", $info['html']);
     $this->assertContains("PHP Version =>", $info['html']);
 }