Beispiel #1
0
        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);
        }
Beispiel #2
0
        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);
        }