Searched refs:TestFrame (Results 1 – 2 of 2) sorted by relevance
36 public class StackRecorderUtil implements Iterable<StackRecorderUtil.TestFrame> {37 private List<TestFrame> testFrames = new LinkedList();53 testFrames.add(0, new TestFrame(declaringClass, methodName, fileName)); in add()66 TestFrame tf = testFrames.get(index); in compareFrame()114 public Iterator<TestFrame> iterator() { in iterator()121 public static class TestFrame { class in StackRecorderUtil126 public TestFrame (Class declaringClass, String methodName, String fileName) { in TestFrame() method in StackRecorderUtil.TestFrame
174 for (StackRecorderUtil.TestFrame f : recorder) { in walk()