| 1234567891011121314151617181920212223 |
- <?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 $%*+-./:';
- }
|