[Htmlparser-cvs] htmlparser/src/org/htmlparser/tests/tagTests OptionTagTest.java,1.33,1.34
Brought to you by:
derrickoswald
From: <der...@us...> - 2003-10-26 03:56:02
|
Update of /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests In directory sc8-pr-cvs1:/tmp/cvs-serv18387/tests/tagTests Modified Files: OptionTagTest.java Log Message: Quiet down the test output. Index: OptionTagTest.java =================================================================== RCS file: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/tagTests/OptionTagTest.java,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** OptionTagTest.java 25 Oct 2003 20:19:44 -0000 1.33 --- OptionTagTest.java 26 Oct 2003 03:53:33 -0000 1.34 *************** *** 78,84 **** for(int j=0;j<nodeCount;j++) { ! //assertTrue("Node " + j + " should be Option Tag",node[j] instanceof OptionTag); ! System.out.println(node[j].getClass().getName()); ! System.out.println(node[j].toHtml()); } OptionTag OptionTag; --- 78,84 ---- for(int j=0;j<nodeCount;j++) { ! assertTrue("Node " + j + " should be Option Tag",node[j] instanceof OptionTag); ! // System.out.println(node[j].getClass().getName()); ! // System.out.println(node[j].toHtml()); } OptionTag OptionTag; |