mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-20 22:00:14 +00:00
24 lines
434 B
PHP
24 lines
434 B
PHP
<?php
|
|
/**
|
|
* Class AlphaNumTest
|
|
*
|
|
* @created 24.11.2017
|
|
* @author Smiley <smiley@chillerlan.net>
|
|
* @copyright 2017 Smiley
|
|
* @license MIT
|
|
*/
|
|
|
|
namespace chillerlan\QRCodeTest\Data;
|
|
|
|
use chillerlan\QRCode\Data\AlphaNum;
|
|
|
|
/**
|
|
* Tests the AlphaNum class
|
|
*/
|
|
final class AlphaNumTest extends DatainterfaceTestAbstract{
|
|
|
|
protected string $FQN = AlphaNum::class;
|
|
protected string $testdata = '0 $%*+-./:';
|
|
|
|
}
|