Files
php-qrcode/tests/Data/ByteTest.php
T
smiley 40e8a6ecbc 🚿
2022-10-05 20:15:44 +02:00

44 lines
878 B
PHP

<?php
/**
* Class ByteTest
*
* @created 24.11.2017
* @author Smiley <smiley@chillerlan.net>
* @copyright 2017 Smiley
* @license MIT
*/
namespace chillerlan\QRCodeTest\Data;
use chillerlan\QRCode\Data\Byte;
/**
* Tests the Byte class
*/
final class ByteTest extends DataInterfaceTestAbstract{
protected string $FQN = Byte::class;
protected string $testdata = '[¯\_(ツ)_/¯]';
/**
* isByte() passses any binary string and only fails on empty strings
*/
public function stringValidateProvider():array{
return [
["\x01\x02\x03", true],
[' ', true], // not empty!
['0', true], // should survive !empty()
['', false],
];
}
/**
* @inheritDoc
*/
public function testInvalidDataException():void{
/** @noinspection PhpUnitTestFailedLineInspection */
$this::markTestSkipped('N/A (binary mode)');
}
}