🛀 test overhaul

This commit is contained in:
smiley
2025-11-02 00:48:56 +01:00
parent b9d2059743
commit c99f5d4022
36 changed files with 356 additions and 333 deletions
+6 -4
View File
@@ -11,8 +11,8 @@ declare(strict_types=1);
namespace chillerlan\QRCodeTest\Data;
use chillerlan\QRCode\Data\Byte;
use chillerlan\QRCode\Data\QRDataModeInterface;
use chillerlan\QRCode\Data\{Byte, QRDataModeInterface};
use PHPUnit\Framework\Attributes\Test;
/**
* Tests the Byte class
@@ -39,11 +39,13 @@ final class ByteTest extends DataInterfaceTestAbstract{
];
}
public function testInvalidDataException():void{
#[Test]
public function binaryStringInvalid():void{
$this::markTestSkipped('N/A (binary mode)');
}
public function testBinaryStringInvalid():void{
#[Test]
public function invalidDataException():void{
$this::markTestSkipped('N/A (binary mode)');
}