Files
php-qrcode/tests/Data/NumberTest.php
T
codemasher 6eb4dd1ac3 🚿 :void
2020-03-03 07:21:12 +01:00

47 lines
1.2 KiB
PHP

<?php
/**
* Class NumberTest
*
* @filesource NumberTest.php
* @created 24.11.2017
* @package chillerlan\QRCodeTest\Data
* @author Smiley <smiley@chillerlan.net>
* @copyright 2017 Smiley
* @license MIT
*/
namespace chillerlan\QRCodeTest\Data;
use chillerlan\QRCode\Data\{Number, QRCodeDataException};
class NumberTest extends DatainterfaceTestAbstract{
protected string $FQCN = Number::class;
protected string $testdata = '0123456789';
protected array $expected = [
16, 40, 12, 86, 106, 105, 0, 236,
17, 236, 17, 236, 17, 236, 17, 236,
17, 236, 17, 236, 17, 236, 17, 236,
17, 236, 17, 236, 17, 236, 17, 236,
17, 236, 17, 236, 17, 236, 17, 236,
17, 236, 17, 236, 17, 236, 17, 236,
17, 236, 17, 236, 17, 236, 17, 236,
17, 236, 17, 236, 17, 236, 17, 236,
17, 236, 17, 236, 17, 236, 17, 236,
17, 236, 17, 236, 17, 236, 17, 236,
201, 141, 102, 116, 238, 162, 239, 230,
222, 37, 79, 192, 42, 109, 188, 72,
89, 63, 168, 151
];
public function testGetCharCodeException():void{
$this->expectException(QRCodeDataException::class);
$this->expectExceptionMessage('illegal char: "#" [35]');
$this->dataInterface->setData('#');
}
}