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\BitUtils; use PHPUnit\Framework\TestCase; class BitUtilsTest extends TestCase { public function testUnsignedRightShift() : void { $this->assertSame(1, BitUtils::unsignedRightShift(1, 0)); $this->assertSame(1, BitUtils::unsignedRightShift(10, 3)); $this->assertSame(536870910, BitUtils::unsignedRightShift(-10, 3)); } public function testNumberOfTrailingZeros() : void { $this->assertSame(32, BitUtils::numberOfTrailingZeros(0)); $this->assertSame(1, BitUtils::numberOfTrailingZeros(10)); $this->assertSame(0, BitUtils::numberOfTrailingZeros(15)); $this->assertSame(2, BitUtils::numberOfTrailingZeros(20)); } }