KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > htmlparser > tests > utilTests > AllTests


1 // HTMLParser Library $Name: v1_5_20050313 $ - A java-based parser for HTML
2
// http://sourceforge.org/projects/htmlparser
3
// Copyright (C) 2004 Somik Raha
4
//
5
// Revision Control Information
6
//
7
// $Source: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tests/utilTests/AllTests.java,v $
8
// $Author: derrickoswald $
9
// $Date: 2005/03/12 12:52:20 $
10
// $Revision: 1.57 $
11
//
12
// This library is free software; you can redistribute it and/or
13
// modify it under the terms of the GNU Lesser General Public
14
// License as published by the Free Software Foundation; either
15
// version 2.1 of the License, or (at your option) any later version.
16
//
17
// This library is distributed in the hope that it will be useful,
18
// but WITHOUT ANY WARRANTY; without even the implied warranty of
19
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20
// Lesser General Public License for more details.
21
//
22
// You should have received a copy of the GNU Lesser General Public
23
// License along with this library; if not, write to the Free Software
24
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25
//
26

27 package org.htmlparser.tests.utilTests;
28
29
30 import junit.framework.TestSuite;
31
32 import org.htmlparser.tests.ParserTestCase;
33
34 /**
35  * Insert the type's description here.
36  * Creation date: (6/17/2001 6:07:04 PM)
37  */

38 public class AllTests extends ParserTestCase
39 {
40     static
41     {
42         System.setProperty ("org.htmlparser.tests.utilTests.AllTests", "AllTests");
43     }
44
45     /**
46      * AllTests constructor comment.
47      * @param name java.lang.String
48      */

49     public AllTests(String JavaDoc name) {
50         super(name);
51     }
52
53     /**
54      * Insert the method's description here.
55      * Creation date: (6/17/2001 6:07:15 PM)
56      * @return junit.framework.TestSuite
57      */

58     public static TestSuite suite()
59     {
60         TestSuite suite = new TestSuite("Utility Tests");
61
62         suite.addTestSuite(BeanTest.class);
63         suite.addTestSuite(CharacterTranslationTest.class);
64         suite.addTestSuite(HTMLParserUtilsTest.class);
65         suite.addTestSuite(NodeListTest.class);
66         suite.addTestSuite(NonEnglishTest.class);
67         suite.addTestSuite(SortTest.class);
68
69         return suite;
70     }
71 }
72
Popular Tags