Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/framework/Jwt/Test/Unit/Header/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/framework/Jwt/Test/Unit/Header/X509Sha256ThumbprintTest.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

declare(strict_types=1);

namespace Magento\Framework\Jwt\Test\Unit\Header;

use Magento\Framework\Jwt\Header\X509Sha256Thumbprint;
use PHPUnit\Framework\TestCase;

class X509Sha256ThumbprintTest extends TestCase
{
    public function testGetValue(): void
    {
        $model = new X509Sha256Thumbprint('cert:=cert');

        $this->assertEquals('Y2VydDo9Y2VydA', $model->getValue());
    }
}