Files
php-qrcode/tests/Data/ByteTest.php
T
2026-03-16 21:48:09 +01:00

53 lines
1.1 KiB
PHP

<?php
/**
* Class ByteTest
*
* @created 24.11.2017
* @author Smiley <smiley@chillerlan.net>
* @copyright 2017 Smiley
* @license MIT
*/
declare(strict_types=1);
namespace chillerlan\QRCodeTest\Data;
use chillerlan\QRCode\Data\{Byte, QRDataModeInterface};
use PHPUnit\Framework\Attributes\Test;
/**
* Tests the Byte class
*/
final class ByteTest extends DataInterfaceTestAbstract{
protected const string testData = '[¯\_(ツ)_/¯]';
protected static function getDataModeInterface(string $data):QRDataModeInterface{
return new Byte($data);
}
/**
* isByte() passses any binary string and only fails on empty strings
*
* @phpstan-return array<int, array{0: string, 1: bool}>
*/
public static function stringValidateProvider():array{
return [
["\x01\x02\x03", true],
[' ', true], // not empty!
['0', true], // should survive !empty()
['', false],
];
}
#[Test]
public function binaryStringInvalid():void{
$this::markTestSkipped('N/A (binary mode)');
}
#[Test]
public function invalidDataException():void{
$this::markTestSkipped('N/A (binary mode)');
}
}