QrReaderTest.php 324 B

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