mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-23 22:28:03 +00:00
36 lines
674 B
PHP
36 lines
674 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 = '茗荷茗荷茗荷茗荷茗荷';
|
|
|
|
/**
|
|
* isKanji() should pass on Kanji/SJIS characters and fail on everything else
|
|
*/
|
|
public function stringValidateProvider():array{
|
|
return [
|
|
['茗荷', true],
|
|
['Ã', false],
|
|
['ABC', false],
|
|
['123', false],
|
|
];
|
|
}
|
|
|
|
}
|