🔥 v6.0 third pass: test clean-up (again)

This commit is contained in:
smiley
2023-11-26 18:42:45 +01:00
parent 2478f75324
commit 2d2a00fabb
37 changed files with 398 additions and 249 deletions
+6 -2
View File
@@ -11,14 +11,18 @@
namespace chillerlan\QRCodeTest\Data;
use chillerlan\QRCode\Data\Byte;
use chillerlan\QRCode\Data\QRDataModeInterface;
/**
* Tests the Byte class
*/
final class ByteTest extends DataInterfaceTestAbstract{
protected static string $FQN = Byte::class;
protected static string $testdata = '[¯\_(ツ)_/¯]';
protected const testData = '[¯\_(ツ)_/¯]';
protected static function getDataModeInterface(string $data):QRDataModeInterface{
return new Byte($data);
}
/**
* isByte() passses any binary string and only fails on empty strings