예제 #1
0
        public bool ItDeterminesIfSomethingIsAnAggregateStatement(Type type, string methodName)
        {
            var method = type.GetMethod(methodName);

            Assert.IsNotNull(method);
            return(StaticAnalysis.IsAggregateMethod(method));
        }