50515253545556575859
test(nodeFormatter, n, str) ; } public static void test(NodeFormatter nodeFormatter, Node n , String str) { StringWriterI sw = new StringWriterI() ; nodeFormatter.format(sw, n) ; String str2 = sw.toString() ; assertEquals(str, str2) ; }
51525354555657585960