koel/tests/Integration/Services/SmartPlaylistServiceTest.php

21 lines
406 B
PHP
Raw Normal View History

<?php
namespace Tests\Integration\Services;
use App\Services\SmartPlaylistService;
use Carbon\Carbon;
use Tests\TestCase;
class SmartPlaylistServiceTest extends TestCase
{
2021-06-05 10:47:56 +00:00
private SmartPlaylistService $service;
public function setUp(): void
{
parent::setUp();
$this->service = app(SmartPlaylistService::class);
Carbon::setTestNow(new Carbon('2018-07-15'));
}
}