public void Register_generic_with_empty_config_Should_add_config_with_exclusive_mode()
        {
            var configs = new StructureTypeConfigurations();

            configs.Register <Dummy>(cfg => { });

            configs.Should().HaveCount(1);
            configs.First().IndexMode.Should().Be(IndexMode.Exclusive);
        }
        public void Register_with_null_config_Should_add_config_with_exclusive_mode()
        {
            var configs = new StructureTypeConfigurations();

            configs.Register(typeof(Dummy));

            configs.Should().HaveCount(1);
            configs.First().IndexMode.Should().Be(IndexMode.Exclusive);
        }