protected override void GivenThat()
        {
            base.GivenThat();

            Playlist = new PlaylistWpl("MyPodcastPlaylist.wpl", true);
            Playlist.AddTrack(@"c:\podcasts\1.mp3");
        }
        protected override void GivenThat()
        {
            base.GivenThat();

            Playlist = new PlaylistWpl("MyPodcastPlaylist.wpl", true);
            var node = Playlist.FindNode(@"smil/body") as XmlNode;

            node.RemoveAll();
        }
        protected override void GivenThat()
        {
            base.GivenThat();

            Playlist = new PlaylistWpl("MyPodcastPlaylist.wpl", true);
        }
 protected override void When()
 {
     Playlist = new PlaylistWpl("MyPodcastPlaylist.wpl", true);
 }