mirror of
https://github.com/Ne-Lexa/php-zip.git
synced 2025-07-10 16:16:18 +02:00
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* This file is part of the nelexa/zip package.
|
|
* (c) Ne-Lexa <https://github.com/Ne-Lexa/php-zip>
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace PhpZip\Tests\Extra\Fields;
|
|
|
|
use PhpZip\Model\Extra\Fields\UnicodeCommentExtraField;
|
|
|
|
/**
|
|
* @internal
|
|
*
|
|
* @small
|
|
*/
|
|
final class UnicodeCommentExtraFieldTest extends AbstractUnicodeExtraFieldTest
|
|
{
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
protected function getUnicodeExtraFieldClassName()
|
|
{
|
|
return UnicodeCommentExtraField::class;
|
|
}
|
|
|
|
public function provideExtraField(): array
|
|
{
|
|
return [
|
|
[
|
|
4293813303,
|
|
'комментарий',
|
|
"\xAA\xAE\xAC\xAC\xA5\xAD\xE2\xA0\xE0\xA8\xA9",
|
|
"\x017d\xEE\xFF\xD0\xBA\xD0\xBE\xD0\xBC\xD0\xBC\xD0\xB5\xD0\xBD\xD1\x82\xD0\xB0\xD1\x80\xD0\xB8\xD0\xB9",
|
|
],
|
|
[
|
|
897024324,
|
|
'תגובה',
|
|
"\x9A\x82\x85\x81\x84",
|
|
"\x01D\x81w5\xD7\xAA\xD7\x92\xD7\x95\xD7\x91\xD7\x94",
|
|
],
|
|
];
|
|
}
|
|
}
|