HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux vm8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: afleverb (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //var/www/dbadmin/vendor/bacon/bacon-qr-code/tests/BaconQrCode/Common/ErrorCorrectionLevelTest.php
<?php
/**
 * BaconQrCode
 *
 * @link      http://github.com/Bacon/BaconQrCode For the canonical source repository
 * @copyright 2013 Ben 'DASPRiD' Scholzen
 * @license   http://opensource.org/licenses/BSD-2-Clause Simplified BSD License
 */

namespace BaconQrCode\Common;

use PHPUnit_Framework_TestCase as TestCase;

class ErrorCorrectionLevelTest extends TestCase
{
    public function testCreationThrowsNoException()
    {
        new ErrorCorrectionLevel(ErrorCorrectionLevel::M);
        new ErrorCorrectionLevel(ErrorCorrectionLevel::L);
        new ErrorCorrectionLevel(ErrorCorrectionLevel::H);
        new ErrorCorrectionLevel(ErrorCorrectionLevel::Q);
    }

    public function testBitsMatchConstants()
    {
        $this->assertEquals(0x0, ErrorCorrectionLevel::M);
        $this->assertEquals(0x1, ErrorCorrectionLevel::L);
        $this->assertEquals(0x2, ErrorCorrectionLevel::H);
        $this->assertEquals(0x3, ErrorCorrectionLevel::Q);
    }

    public function testInvalidErrorCorrectionLevelThrowsException()
    {
        $this->setExpectedException(
            'BaconQrCode\Exception\UnexpectedValueException',
            'Value not a const in enum BaconQrCode\Common\ErrorCorrectionLevel'
        );
        new ErrorCorrectionLevel(4);
    }
}