/* * Created on Nov 5, 2005 * * Copyright 2005-2010 Ignis Software Tools Ltd. All rights reserved. */ package tests.jsystem.framework.report.html; import junit.framework.SystemTestCase; /** * This test should test the java doc feature * It extract the java doc from the class and methods. * @author guy.arieli * */ public class JavaDocTest extends SystemTestCase { /** * This method is a test that test the ability to get javadoc of methods * @throws Exception * */ public void testJavaDoc() throws Exception{ //String[] strings = HtmlCodeWriter.getInstance().getJavaDoc(JavaDocTest.class.getName(), "testJavaDoc"); //System.out.println(strings[0]); //System.out.println(strings[1]); } /** * This method is a test that test the ability to get javadoc of methods * This is testJavaDoc2. * @throws Exception * */ public void testJavaDoc2() throws Exception{ //String[] strings = HtmlCodeWriter.getInstance().getJavaDoc(JavaDocTest.class.getName(), "testJavaDoc"); //System.out.println(strings[0]); //System.out.println(strings[1]); } }