Files
php-qrcode/tests/Data/NumberTest.php
T
2023-11-26 18:42:45 +01:00

38 lines
740 B
PHP

<?php
/**
* Class NumberTest
*
* @created 24.11.2017
* @author Smiley <smiley@chillerlan.net>
* @copyright 2017 Smiley
* @license MIT
*/
namespace chillerlan\QRCodeTest\Data;
use chillerlan\QRCode\Data\Number;
use chillerlan\QRCode\Data\QRDataModeInterface;
/**
* Tests the Number class
*/
final class NumberTest extends DataInterfaceTestAbstract{
protected const testData = '0123456789';
protected static function getDataModeInterface(string $data):QRDataModeInterface{
return new Number($data);
}
/**
* isNumber() should pass on any number and fail on anything else
*/
public static function stringValidateProvider():array{
return [
['0123456789', true],
['ABC123', false],
];
}
}