endtoend-test-psl/tests/Psl/Hash/Hmac/AlgorithmsTest.php

19 lines
317 B
PHP
Raw Normal View History

2020-10-20 08:45:30 +02:00
<?php
declare(strict_types=1);
namespace Psl\Tests\Hash\Hmac;
use PHPUnit\Framework\TestCase;
use Psl\Hash\Hmac;
use function hash_hmac_algos;
final class AlgorithmsTest extends TestCase
{
public function testAlgorithms(): void
{
static::assertSame(hash_hmac_algos(), Hmac\algorithms());
}
}