public void TestFindMenuFacetNotAddedToPropertyByDefault()
        {
            PropertyInfo property = FindProperty(typeof(Customer), "Property1");

            facetFactory.Process(Reflector, property, MethodRemover, Specification);
            Assert.IsNull(Specification.GetFacet(typeof(IFindMenuFacet)));
        }
        public void TestFindMenuFacetNotAddedToPropertyByDefault()
        {
            IImmutableDictionary <string, ITypeSpecBuilder> metamodel = new Dictionary <string, ITypeSpecBuilder>().ToImmutableDictionary();

            PropertyInfo property = FindProperty(typeof(Customer), "Property1");

            metamodel = facetFactory.Process(Reflector, property, MethodRemover, Specification, metamodel);
            Assert.IsNull(Specification.GetFacet(typeof(IFindMenuFacet)));
            Assert.IsNotNull(metamodel);
        }