QrReaderTest.php 304 B

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