public void CreatePlaylistItem_PlaylistItemDoesntExist_PlaylistItemCreated() { PlaylistItemDto playlistItemDto = Helpers.CreatePlaylistItemDto(); var createdPlaylistItemDto = PlaylistItemController.Create(playlistItemDto); // Make sure we actually get a PlaylistItem DTO back from the Controller. Assert.NotNull(createdPlaylistItemDto); Playlist playlist = PlaylistManager.Get(createdPlaylistItemDto.PlaylistId); // Make sure that the created playlistItem was cascade added to the Playlist Assert.That(playlist.Items.Count(i => i.Id == createdPlaylistItemDto.Id) == 1); }
public void CreatePlaylistItem_PlaylistItemDoesntExist_PlaylistItemCreated() { PlaylistItemDto playlistItemDto = Helpers.CreatePlaylistItemDto(); var result = PlaylistItemController.Create(playlistItemDto); var createdPlaylistItemDto = (PlaylistItemDto)result.Data; // Make sure we actually get a PlaylistItem DTO back from the Controller. Assert.NotNull(createdPlaylistItemDto); NHibernateSessionManager.Instance.Clear(); Playlist playlist = PlaylistDao.Get(createdPlaylistItemDto.PlaylistId); // Make sure that the created playlistItem was cascade added to the Playlist Assert.That(playlist.Items.Count(i => i.Id == createdPlaylistItemDto.Id) == 1); }