public void HandleResponse_ResponseIsEmpty_ReturnsTrue()
        {
            var result = new DeletePlaylistResultWrapper(new SubsonicServiceConfiguration(), 1);

            result.CallHandleResponse(XDocument.Load(new StringReader(Data)));

            result.Result.Should().BeTrue();
        }
        public void HandleResponse_ResponseIsEmpty_ReturnsTrue()
        {
            var result = new DeletePlaylistResultWrapper(new SubsonicServiceConfiguration(), 1);

            result.CallHandleResponse(XDocument.Load(new StringReader(Data)));

            result.Result.Should().BeTrue();
        }
        public void Setup()
        {
            var subsonicServiceConfiguration = new SubsonicServiceConfiguration();

            _subject = new DeletePlaylistResultWrapper(subsonicServiceConfiguration, 1);
        }
 public void Setup()
 {
     var subsonicServiceConfiguration = new SubsonicServiceConfiguration();
     _subject = new DeletePlaylistResultWrapper(subsonicServiceConfiguration, 1);
 }