Added playlist repository logic.

This commit is contained in:
2025-02-18 20:49:04 -05:00
parent 8cf4bb2804
commit 2bafd474a0
7 changed files with 182 additions and 6 deletions

View File

@@ -9,7 +9,7 @@ public class PlaylistTests
[Fact]
public void Add_Songs()
{
Playlist playlist = new("Test");
Playlist playlist = new();
Song[] songs =
[
@@ -38,7 +38,7 @@ public class PlaylistTests
[Fact]
public void Sort_Songs()
{
Playlist playlist = new("Test");
Playlist playlist = new();
Song[] songs =
[
@@ -75,7 +75,7 @@ public class PlaylistTests
[Fact]
public void Remove_Songs()
{
Playlist playlist = new("Test");
Playlist playlist = new();
Song[] songs =
[
@@ -101,7 +101,7 @@ public class PlaylistTests
[Fact]
public void Lock_Playlist()
{
Playlist playlist = new("Test");
Playlist playlist = new();
Song[] songs =
[