Files
php-uuid/tests/TestCase.php
T
2025-05-25 16:52:53 -05:00

30 lines
543 B
PHP

<?php
declare(strict_types=1);
namespace Ramsey\Uuid\Test;
use Mockery;
use PHPUnit\Framework\TestCase as PhpUnitTestCase;
use function current;
use function pack;
use function unpack;
class TestCase extends PhpUnitTestCase
{
protected function tearDown(): void
{
parent::tearDown();
Mockery::close();
}
public static function isLittleEndianSystem(): bool
{
/** @var int[] $unpacked */
$unpacked = unpack('v', pack('S', 0x00FF));
return current($unpacked) === 0x00FF;
}
}