}
public void test2DeepPrintAll() throws Exception {
DrillDownReport printer =
new DrillDownReport(new PrintStream(out), null, MAX_VALUE, 0);
methodCost2.addMethodCost(81, new MethodCost("c.g.t.A.method1()V", 0, 1));
methodCost2.link(context);
printer.print("", methodCost2, MAX_VALUE);
assertStringEquals("c.g.t.A.method2()V [2, 0 / 3, 0]\n" +
" line 81: c.g.t.A.method1()V [1, 0 / 1, 0]\n", out.toString());
}