Added playlist repository logic.
This commit is contained in:
@@ -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 =
|
||||
[
|
||||
|
||||
Reference in New Issue
Block a user