protected IMethodGraph BuildMethodGraph(Method method)
        {
            IProblemPipe        problemPipe        = new TypeParser();
            IBlacklistManager   blacklistManager   = new IDbCommandBlacklistManagerStub();
            IMethodGraphBuilder methodGraphBuilder = new MethodGraphBuilder(method, blacklistManager, problemPipe);

            methodGraphBuilder.Build();
            IMethodGraph methodGraph = methodGraphBuilder.GetResult();

            return(methodGraph);
        }
Esempio n. 2
0
        public void SetUp()
        {
            IBlacklistManager blacklistManager = new IDbCommandBlacklistManagerStub();

            _symbolTable = new SymbolTable(blacklistManager);
        }