glhcp/server/vendor/khanamiryan/qrcode-detector-decoder/tests/QrReaderTest.php

19 lines
337 B
PHP
Raw Normal View History

2023-08-10 06:59:52 +00:00
<?php
namespace Khanamiryan\QrCodeTests;
use PHPUnit\Framework\TestCase;
use Zxing\QrReader;
class QrReaderTest extends TestCase
{
public function testText1()
{
$image = __DIR__ . "/qrcodes/hello_world.png";
$qrcode = new QrReader($image);
$this->assertSame("Hello world!", $qrcode->text());
}
}