SnowflakeTest.php 359 B

1234567891011121314151617
  1. <?php
  2. namespace Tests\Unit;
  3. use Tests\TestCase;
  4. use App\Services\SnowflakeService;
  5. class SnowflakeTest extends TestCase
  6. {
  7. /** @test */
  8. public function snowflakeTest()
  9. {
  10. $expected = 266077397319815168;
  11. $actual = SnowflakeService::byDate(now()->parse('2021-02-13T05:36:35+00:00'));
  12. $this->assertEquals($expected, $actual);
  13. }
  14. }