Exemplo n.º 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);
        }
Exemplo n.º 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);
        }