public void Can_get_and_set_configuration_facet()
        {
            var complexType = new EdmComplexType();
            complexType.SetConfiguration(42);

            Assert.Equal(42, complexType.GetConfiguration());
        }
        public void Configure_should_set_configuration()
        {
            var complexType = new EdmComplexType { Name = "C" };
            var complexTypeConfiguration = new ComplexTypeConfiguration(typeof(object));

            complexTypeConfiguration.Configure(complexType);

            Assert.Same(complexTypeConfiguration, complexType.GetConfiguration());
        }