1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-26 09:46:49 +00:00
pixelfed/tests/Unit/SnowflakeTest.php
2021-09-01 01:17:37 -06:00

17 lines
310 B
PHP

<?php
namespace Tests\Unit;
use Tests\TestCase;
use App\Services\SnowflakeService;
class SnowflakeTest extends TestCase
{
/** @test */
public function snowflakeTest()
{
$expected = 266077397319815168;
$actual = 266077397319815168;
$this->assertEquals($expected, $actual);
}
}