mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-16 16:12:09 +03:00
30 lines
600 B
PHP
30 lines
600 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace ShlinkioTest\Shlink\Common\Response;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
use Shlinkio\Shlink\Common\Response\PixelResponse;
|
||
|
|
||
|
class PixelResponseTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @var PixelResponse
|
||
|
*/
|
||
|
private $resp;
|
||
|
|
||
|
public function setUp()
|
||
|
{
|
||
|
$this->resp = new PixelResponse();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function responseHasGifTypeAndIsNotEmpty()
|
||
|
{
|
||
|
$this->assertEquals('image/gif', $this->resp->getHeaderLine('Content-Type'));
|
||
|
$this->assertNotEmpty((string) $this->resp->getBody());
|
||
|
}
|
||
|
}
|