public void StreamUriHasCorrectEndpoint() { _config = _config.WithStreamUri(new Uri("http://stream.test.com")); TestStreamProcessor sp = CreateAndStartProcessor(); Assert.Equal(new Uri("http://stream.test.com/all"), sp.ActualStreamUri); }
public void StreamUriHasCorrectEndpoint() { _config = _config.WithStreamUri(new Uri("http://stream.test.com")); StreamProcessor sp = CreateAndStartProcessor(); Assert.Equal(new Uri("http://stream.test.com/all"), _eventSourceFactory.ReceivedProperties.StreamUri); }