public void Should_create_ConfigurationErrorException()
        {
            // Arrange
            ExceptionFactory.RequestDescriptionProvider = () => TestDataFactory.CreateRequestDescription();

            // Act
            var result = ExceptionFactory.CreateConfigurationErrorsException("Message");

            // Assert
            Assert.That(result, Is.TypeOf(typeof(ConfigurationErrorsException)));
        }