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;
 }
 public void SetUp()
 {
     IBlacklistManager blacklistManager = new IDbCommandBlacklistManagerStub();
       _symbolTable = new SymbolTable (blacklistManager);
 }