Exemple #1
0
        public void ShouldCreateNoneExecuter()
        {
            var configuration = new ConfigurationBuilder().Build();

            configuration.Properties["Server:Retry:Strategy"] = "none";
            var executer = new RequestExecuterFactory(configuration).Create();

            executer.Should().BeOfType <NoneRetryRequestExecuter>();
        }