| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- /**
- * Class EccLevelTest
- *
- * @created 25.07.2022
- * @author smiley <smiley@chillerlan.net>
- * @copyright 2022 smiley
- * @license MIT
- */
- declare(strict_types=1);
- namespace chillerlan\QRCodeTest\Common;
- use chillerlan\QRCode\QRCodeException;
- use chillerlan\QRCode\Common\{EccLevel, MaskPattern};
- use PHPUnit\Framework\TestCase;
- /**
- * EccLevel coverage test
- */
- final class EccLevelTest extends TestCase{
- public function testConstructInvalidEccException():void{
- $this->expectException(QRCodeException::class);
- $this->expectExceptionMessage('invalid ECC level');
- new EccLevel(69);
- }
- public function testToString():void{
- $ecc = new EccLevel(EccLevel::L);
- $this::assertSame('L', (string)$ecc);
- }
- public function testGetLevel():void{
- $ecc = new EccLevel(EccLevel::L);
- $this::assertSame(EccLevel::L, $ecc->getLevel());
- }
- public function testGetOrdinal():void{
- $ecc = new EccLevel(EccLevel::L);
- $this::assertSame(0, $ecc->getOrdinal());
- }
- public function testGetformatPattern():void{
- $ecc = new EccLevel(EccLevel::Q);
- $this::assertSame(0b010010010110100, $ecc->getformatPattern(new MaskPattern(4)));
- }
- public function getMaxBits():void{
- $ecc = new EccLevel(EccLevel::Q);
- $this::assertSame(4096, $ecc->getMaxBits()[21]);
- }
- }
|