QrReaderTest.php 337 B

123456789101112131415161718
  1. <?php
  2. namespace Khanamiryan\QrCodeTests;
  3. use PHPUnit\Framework\TestCase;
  4. use Zxing\QrReader;
  5. class QrReaderTest extends TestCase
  6. {
  7. public function testText1()
  8. {
  9. $image = __DIR__ . "/qrcodes/hello_world.png";
  10. $qrcode = new QrReader($image);
  11. $this->assertSame("Hello world!", $qrcode->text());
  12. }
  13. }