/**
  * @covers \Alchemy\Phrasea\Controller\Admin\Database::deleteLogoPdf
  */
 public function testDeleteLogoPdf()
 {
     $this->setAdmin(true);
     if ('' === trim(\databox::getPrintLogo(self::$DI['collection']->get_sbas_id()))) {
         $this->markTestSkipped('No logo setted');
     }
     $this->XMLHTTPRequest('POST', '/admin/databox/' . self::$DI['collection']->get_sbas_id() . '/logo/delete/');
     $json = $this->getJson(self::$DI['client']->getResponse());
     $this->assertTrue($json->success);
     $this->assertEmpty(\databox::getPrintLogo(self::$DI['collection']->get_sbas_id()));
 }