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

            metamodel = facetFactory.Process(Reflector, typeof(Customer1), MethodRemover, Specification, metamodel);
            AssertRemovedCalled(2);
            Assert.IsNotNull(metamodel);
        }
Esempio n. 2
0
 public void TestMethodsMarkedIgnoredAreRemoved()
 {
     facetFactory.Process(Reflector, typeof(Customer1), MethodRemover, Specification);
     AssertRemovedCalled(2);
 }