Ejemplo n.º 1
0
 public void SetUp()
 {
     playListPersistence          = Substitute.For <PlayListPersistencePort>();
     playListNotifier             = Substitute.For <PlayListNotifierPort>();
     addImageUrlToPlayListService = new AddImageUrlToPlayListService(playListPersistence, playListNotifier);
 }
Ejemplo n.º 2
0
 public void SetUp()
 {
     playListPersistence          = Substitute.For <PlayListPersistencePort>();
     eventPublisher               = Substitute.For <EventPublisherPort>();
     addImageUrlToPlayListService = new AddImageUrlToPlayListService(playListPersistence, eventPublisher);
 }