Ejemplo n.º 1
0
        public void ignore_methods_declared_by()
        {
            source.IncludeClassesSuffixedWithController();
            source.IgnoreMethodsDeclaredBy <OneController>();

            theResultingGraph.ChainFor <ChildController>(x => x.Report()).ShouldBeNull();
            theResultingGraph.ChainFor <ChildController>(x => x.ChildQuery(null)).ShouldNotBeNull();
        }