KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > htmlparser > tests > tagTests > 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/tagTests/AllTests.java,v $
8
// $Author: derrickoswald $
9
// $Date: 2004/01/02 16:24:57 $
10
// $Revision: 1.50 $
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.tagTests;
28
29 import junit.framework.TestSuite;
30
31 import org.htmlparser.tests.ParserTestCase;
32
33 public class AllTests extends ParserTestCase
34 {
35     static
36     {
37         System.setProperty ("org.htmlparser.tests.tagTests.AllTests", "AllTests");
38     }
39
40     public AllTests(String JavaDoc name) {
41         super(name);
42     }
43
44     public static TestSuite suite() {
45         TestSuite suite = new TestSuite("Tag Tests");
46         suite.addTestSuite(AppletTagTest.class);
47         suite.addTestSuite(BaseHrefTagTest.class);
48         suite.addTestSuite(BodyTagTest.class);
49         suite.addTestSuite(BulletListTagTest.class);
50         suite.addTestSuite(BulletTagTest.class);
51         suite.addTestSuite(CompositeTagTest.class);
52         suite.addTestSuite(DivTagTest.class);
53         suite.addTestSuite(DoctypeTagTest.class);
54         suite.addTestSuite(EndTagTest.class);
55         suite.addTestSuite(FormTagTest.class);
56         suite.addTestSuite(FrameSetTagTest.class);
57         suite.addTestSuite(FrameTagTest.class);
58         suite.addTestSuite(HeadTagTest.class);
59         suite.addTestSuite(HtmlTagTest.class);
60         suite.addTestSuite(ImageTagTest.class);
61         suite.addTestSuite(InputTagTest.class);
62         suite.addTestSuite(JspTagTest.class);
63         suite.addTestSuite(LabelTagTest.class);
64         suite.addTestSuite(LinkTagTest.class);
65         suite.addTestSuite(MetaTagTest.class);
66         suite.addTestSuite(ObjectCollectionTest.class);
67         suite.addTestSuite(OptionTagTest.class);
68         suite.addTestSuite(ScriptTagTest.class);
69         suite.addTestSuite(SelectTagTest.class);
70         suite.addTestSuite(SpanTagTest.class);
71         suite.addTestSuite(StyleTagTest.class);
72         suite.addTestSuite(TableTagTest.class);
73         suite.addTestSuite(TagTest.class);
74         suite.addTestSuite(TextareaTagTest.class);
75         suite.addTestSuite(TitleTagTest.class);
76         return suite;
77     }
78 }
79
Popular Tags