123456789101112131415 |
- <?php
- namespace Tests\Service\Callback;
- use App\Service\Callback\TrackService;
- use PHPUnit\Framework\TestCase;
- class TrackServiceTest extends \Tests\TestCase
- {
- public function testgetTrackTable() {
- $startTimestamp = strtotime('2023-05-01 00:03:23');
- $tables = TrackService::getTrackTable($startTimestamp, 180);
- dump($tables);
- }
- }
|