public void SetUp()
        {
            proxy = new Mock<IBassServiceProxy>(MockBehavior.Strict);
            streamFactory = new Mock<IBassStreamFactory>(MockBehavior.Strict);
            resampler = new Mock<IBassResampler>(MockBehavior.Strict);

            streamingUrlReader = new BassStreamingUrlReader(proxy.Object, streamFactory.Object, resampler.Object);
        }