public void TestNoExplicitTitleOrToStringMethod() {
            IImmutableDictionary<string, ITypeSpecBuilder> metamodel = new Dictionary<string, ITypeSpecBuilder>().ToImmutableDictionary();

            metamodel = facetFactory.Process(Reflector,typeof(Customer2), MethodRemover, Specification, metamodel);
            Assert.IsNull(Specification.GetFacet(typeof(ITitleFacet)));
            AssertNoMethodsRemoved();
            Assert.IsNotNull(metamodel);
        }
 public void TestNoExplicitTitleOrToStringMethod()
 {
     facetFactory.Process(Reflector, typeof(Customer2), MethodRemover, Specification);
     Assert.IsNull(Specification.GetFacet(typeof(ITitleFacet)));
     AssertNoMethodsRemoved();
 }