* @copyright 2017 Smiley * @license MIT */ declare(strict_types=1); namespace chillerlan\QRCodeTest\Data; use chillerlan\QRCode\Data\AlphaNum; use chillerlan\QRCode\Data\QRDataModeInterface; /** * Tests the AlphaNum class */ final class AlphaNumTest extends DataInterfaceTestAbstract{ protected const testData = '0 $%*+-./:'; protected static function getDataModeInterface(string $data):QRDataModeInterface{ return new AlphaNum($data); } /** * isAlphaNum() should pass on the 45 defined characters and fail on anything else (e.g. lowercase) * * @phpstan-return array */ public static function stringValidateProvider():array{ return [ ['ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 $%*+-./:', true], ['abc', false], ['ÄÖÜ', false], [',', false], ['-', true], ['+', true], ['.', true], ['*', true], [':', true], ['/', true], ['\\', false], ]; } }