mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-16 16:12:09 +03:00
24 lines
579 B
PHP
24 lines
579 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace ShlinkioTest\Shlink\Common\Response;
|
||
|
|
||
|
use Endroid\QrCode\QrCode;
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
use Shlinkio\Shlink\Common\Response\QrCodeResponse;
|
||
|
|
||
|
class QrCodeResponseTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function providedQrCoideIsSetAsBody()
|
||
|
{
|
||
|
$qrCode = new QrCode('Hello');
|
||
|
$resp = new QrCodeResponse($qrCode);
|
||
|
|
||
|
$this->assertEquals($qrCode->getContentType(), $resp->getHeaderLine('Content-Type'));
|
||
|
$this->assertEquals($qrCode->get(), (string) $resp->getBody());
|
||
|
}
|
||
|
}
|