mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-24 15:27:55 +00:00
24 lines
439 B
PHP
24 lines
439 B
PHP
<?php
|
|
/**
|
|
* Class KanjiTest
|
|
*
|
|
* @created 24.11.2017
|
|
* @author Smiley <smiley@chillerlan.net>
|
|
* @copyright 2017 Smiley
|
|
* @license MIT
|
|
*/
|
|
|
|
namespace chillerlan\QRCodeTest\Data;
|
|
|
|
use chillerlan\QRCode\Data\Kanji;
|
|
|
|
/**
|
|
* Tests the Kanji class
|
|
*/
|
|
final class KanjiTest extends DatainterfaceTestAbstract{
|
|
|
|
protected string $FQN = Kanji::class;
|
|
protected string $testdata = '茗荷茗荷茗荷茗荷茗荷';
|
|
|
|
}
|