Exemplo n.º 1
0
        public void Test_IsEnabledShouldReturnTrueByDefault()
        {
            var handler = new DynamicHttpHandlerSpy(logger.Object);

            Assert.True(handler.IsEnabled(null));
        }
Exemplo n.º 2
0
        public void Test_ContinueNextShouldReturnFalseByDefault()
        {
            var handler = new DynamicHttpHandlerSpy(logger.Object);

            Assert.False(handler.ContinueNext(null));
        }