KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > poi > hwpf > AllTests


1
2 /* ====================================================================
3    Copyright 2002-2004 Apache Software Foundation
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16 ==================================================================== */

17         
18
19 package org.apache.poi.hwpf;
20
21 import junit.framework.*;
22
23 public class AllTests
24   extends TestCase
25 {
26
27   public AllTests(String JavaDoc s)
28   {
29     super(s);
30   }
31
32   public static Test suite()
33   {
34     TestSuite suite = new TestSuite();
35     suite.addTestSuite(org.apache.poi.hwpf.model.TestCHPBinTable.class);
36     suite.addTestSuite(org.apache.poi.hwpf.model.
37
                       TestDocumentProperties.class);
38     suite.addTestSuite(org.apache.poi.hwpf.model.
39
                       TestFileInformationBlock.class);
40     suite.addTestSuite(org.apache.poi.hwpf.model.TestFontTable.class);
41     suite.addTestSuite(org.apache.poi.hwpf.model.TestPAPBinTable.class);
42     suite.addTestSuite(org.apache.poi.hwpf.model.TestPlexOfCps.class);
43     suite.addTestSuite(org.apache.poi.hwpf.model.TestSectionTable.class);
44     suite.addTestSuite(org.apache.poi.hwpf.model.TestStyleSheet.class);
45     suite.addTestSuite(org.apache.poi.hwpf.model.TestTextPieceTable.class);
46     suite.addTestSuite(org.apache.poi.hwpf.model.TestListTables.class);
47     return suite;
48   }
49 }
50
Popular Tags