mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
20 lines
406 B
PHP
20 lines
406 B
PHP
<?php
|
|
|
|
namespace Tests\Integration\Services;
|
|
|
|
use App\Services\SmartPlaylistService;
|
|
use Carbon\Carbon;
|
|
use Tests\TestCase;
|
|
|
|
class SmartPlaylistServiceTest extends TestCase
|
|
{
|
|
private SmartPlaylistService $service;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->service = app(SmartPlaylistService::class);
|
|
Carbon::setTestNow(new Carbon('2018-07-15'));
|
|
}
|
|
}
|