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

19 lines
297 B
PHP
Raw Normal View History

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