Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.73.229
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
bacon /
bacon-qr-code /
test /
Common /
Delete
Unzip
Name
Size
Permission
Date
Action
BitArrayTest.php
5.91
KB
-rw-r--r--
2020-10-30 09:00
BitMatrixTest.php
3.16
KB
-rw-r--r--
2020-10-30 09:00
BitUtilsTest.php
784
B
-rw-r--r--
2020-10-30 09:00
ErrorCorrectionLevelTest.php
783
B
-rw-r--r--
2020-10-30 09:00
FormatInformationTest.php
2.92
KB
-rw-r--r--
2020-10-30 09:00
ModeTest.php
534
B
-rw-r--r--
2020-10-30 09:00
ReedSolomonCodecTest.php
3.04
KB
-rw-r--r--
2020-10-30 09:00
VersionTest.php
2.26
KB
-rw-r--r--
2020-10-30 09:00
Save
Rename
<?php declare(strict_types = 1); namespace BaconQrCodeTest\Common; use BaconQrCode\Common\ErrorCorrectionLevel; use BaconQrCode\Exception\OutOfBoundsException; use PHPUnit\Framework\TestCase; class ErrorCorrectionLevelTest extends TestCase { public function testBitsMatchConstants() : void { $this->assertSame(0x0, ErrorCorrectionLevel::M()->getBits()); $this->assertSame(0x1, ErrorCorrectionLevel::L()->getBits()); $this->assertSame(0x2, ErrorCorrectionLevel::H()->getBits()); $this->assertSame(0x3, ErrorCorrectionLevel::Q()->getBits()); } public function testInvalidErrorCorrectionLevelThrowsException() : void { $this->expectException(OutOfBoundsException::class); ErrorCorrectionLevel::forBits(4); } }