Improved HWPF Range.replaceText, from N. Hira in bug #45001
[poi.git] / src / scratchpad / testcases / org / apache / poi / hwpf / AllTests.java
blob27c347bc72f6fa948abd7b4030c0014d7f533836
2 /* ====================================================================
3 Licensed to the Apache Software Foundation (ASF) under one or more
4 contributor license agreements. See the NOTICE file distributed with
5 this work for additional information regarding copyright ownership.
6 The ASF licenses this file to You under the Apache License, Version 2.0
7 (the "License"); you may not use this file except in compliance with
8 the License. You may obtain a copy of the License at
10 http://www.apache.org/licenses/LICENSE-2.0
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17 ==================================================================== */
20 package org.apache.poi.hwpf;
22 import junit.framework.*;
24 public class AllTests
25 extends TestCase
28 public AllTests(String s)
30 super(s);
33 public static Test suite()
35 TestSuite suite = new TestSuite();
36 suite.addTestSuite(org.apache.poi.hwpf.model.TestCHPBinTable.class);
37 suite.addTestSuite(org.apache.poi.hwpf.model.
38 TestDocumentProperties.class);
39 suite.addTestSuite(org.apache.poi.hwpf.model.
40 TestFileInformationBlock.class);
41 suite.addTestSuite(org.apache.poi.hwpf.model.TestFontTable.class);
42 suite.addTestSuite(org.apache.poi.hwpf.model.TestPAPBinTable.class);
43 suite.addTestSuite(org.apache.poi.hwpf.model.TestPlexOfCps.class);
44 suite.addTestSuite(org.apache.poi.hwpf.model.TestSectionTable.class);
45 suite.addTestSuite(org.apache.poi.hwpf.model.TestStyleSheet.class);
46 suite.addTestSuite(org.apache.poi.hwpf.model.TestTextPieceTable.class);
47 suite.addTestSuite(org.apache.poi.hwpf.model.TestListTables.class);
48 return suite;