public void CreateWithEmptyConfiguration()
        {
            var factory = new ApplicationSettingsConfigurationFactory();
            var result  = factory.Create <EmptyConfiguration>();

            result.Should().NotBeNull("because the instance should have been created");
        }
        public void CreateWithMissingSimpleConfiguration()
        {
            var factory = new ApplicationSettingsConfigurationFactory();
            var result  = factory.Create <SimpleConfiguration>();

            result.Should().NotBeNull("because the instance should have been created");
            result.Item.Should().BeNull("becaue there was no matching application setting");
        }