ByteTest.php 532 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Class ByteTest
  4. *
  5. * @created 24.11.2017
  6. * @author Smiley <smiley@chillerlan.net>
  7. * @copyright 2017 Smiley
  8. * @license MIT
  9. */
  10. namespace chillerlan\QRCodeTest\Data;
  11. use chillerlan\QRCode\Data\Byte;
  12. /**
  13. * Tests the Byte class
  14. */
  15. final class ByteTest extends DatainterfaceTestAbstract{
  16. protected string $FQN = Byte::class;
  17. protected string $testdata = '[¯\_(ツ)_/¯]';
  18. /**
  19. * @inheritDoc
  20. */
  21. public function testInvalidDataException():void{
  22. $this->markTestSkipped('N/A');
  23. }
  24. }