diff options
Diffstat (limited to 'vendor/maennchen/zipstream-php/test/Zs/ExtendedInformationExtraFieldTest.php')
-rw-r--r-- | vendor/maennchen/zipstream-php/test/Zs/ExtendedInformationExtraFieldTest.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/vendor/maennchen/zipstream-php/test/Zs/ExtendedInformationExtraFieldTest.php b/vendor/maennchen/zipstream-php/test/Zs/ExtendedInformationExtraFieldTest.php deleted file mode 100644 index 2b8dbed4a..000000000 --- a/vendor/maennchen/zipstream-php/test/Zs/ExtendedInformationExtraFieldTest.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace ZipStream\Test\Zs; - -use PHPUnit\Framework\TestCase; -use ZipStream\Zs\ExtendedInformationExtraField; - -class ExtendedInformationExtraFieldTest extends TestCase -{ - public function testSerializesCorrectly(): void - { - $extraField = ExtendedInformationExtraField::generate(); - - $this->assertSame( - bin2hex((string) $extraField), - '5356' . // 2 bytes; Tag for this "extra" block type - '0000' // 2 bytes; TODO: Document - ); - } -} |