コード例 #1
0
 /**
  * @covers Xoops\Core\HttpRequest::getAcceptMediaTypes
  */
 public function testGetAcceptMediaTypes()
 {
     $_SERVER['HTTP_ACCEPT'] = 'text/html,application/xml;q=0.9,*/*;q=0.1';
     $expected = array('text/html' => 1, 'application/xml' => 0.9, '*/*' => 0.1);
     $actual = $this->object->getAcceptMediaTypes();
     $this->assertEquals($expected, $actual);
 }