koel/tests/Integration/Repositories/SongRepositoryTest.php
2024-07-06 17:44:45 +02:00

26 lines
587 B
PHP

<?php
namespace Tests\Integration\Repositories;
use App\Models\Song;
use App\Repositories\SongRepository;
use Tests\TestCase;
class SongRepositoryTest extends TestCase
{
private SongRepository $songRepository;
public function setUp(): void
{
parent::setUp();
$this->songRepository = app(SongRepository::class);
}
public function testGetOneByPath(): void
{
/** @var Song $song */
$song = Song::factory()->create(['path' => 'foo']);
self::assertSame($song->id, $this->songRepository->findOneByPath('foo')->id);
}
}