Lines Matching refs:actual
447 void doTest(TreeNode expected, TreeNode actual) in doTest() argument
450 assertEquals("__ROOT__", actual.getType()); in doTest()
452 m_StackActual.push(new Pair(actual, actual.createEnumeration())); in doTest()
507 TreeNode actual = m_BufferActual.get(lenActual - 1); in testTerminatingNode() local
510 boolean aRoot = actual.getType().equals("__ROOT__"); in testTerminatingNode()
514 else printUnexpected(actual); in testTerminatingNode()
520 testContentNode((ContentNode) expected, (ContentNode) actual); in testTerminatingNode()
526 private void testContentNode(ContentNode expected, ContentNode actual) in testContentNode() argument
529 String contentActual = actual.getContent(); in testContentNode()
530 if (!expected.equals(actual)) { in testContentNode()
590 void printDiff(String prefix, String expected, String actual) in printDiff() argument
593 ":\texpected: " + expected + "\tactual: " + actual); in printDiff()