]> source.dussan.org Git - poi.git/blob
66d2a1d27050567ed87b50b461eee29ecee96b44
[poi.git] /
1 /* ====================================================================
2    Licensed to the Apache Software Foundation (ASF) under one or more
3    contributor license agreements.  See the NOTICE file distributed with
4    this work for additional information regarding copyright ownership.
5    The ASF licenses this file to You under the Apache License, Version 2.0
6    (the "License"); you may not use this file except in compliance with
7    the License.  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 package org.apache.poi.hssf.record.formula.functions;
19
20 import junit.framework.Test;
21 import junit.framework.TestSuite;
22
23 /**
24  * Direct tests for all implementors of <code>Function</code>.
25  * 
26  * @author Josh Micich
27  */
28 public final class AllIndividualFunctionEvaluationTests {
29
30         // TODO - have this suite incorporated into a higher level one
31         public static Test suite() {
32                 TestSuite result = new TestSuite("Tests for org.apache.poi.hssf.record.formula.functions");
33                 result.addTestSuite(TestAverage.class);
34                 result.addTestSuite(TestCountFuncs.class);
35                 result.addTestSuite(TestDate.class);
36                 result.addTestSuite(TestFinanceLib.class);
37                 result.addTestSuite(TestIndex.class);
38                 result.addTestSuite(TestIsBlank.class);
39                 result.addTestSuite(TestLen.class);
40                 result.addTestSuite(TestMid.class);
41                 result.addTestSuite(TestMathX.class);
42                 result.addTestSuite(TestMatch.class);
43                 result.addTestSuite(TestPmt.class);
44                 result.addTestSuite(TestOffset.class);
45                 result.addTestSuite(TestRowCol.class);
46                 result.addTestSuite(TestSumproduct.class);
47                 result.addTestSuite(TestStatsLib.class);
48                 result.addTestSuite(TestTFunc.class);
49                 result.addTestSuite(TestTrim.class);
50                 result.addTestSuite(TestXYNumericFunction.class);
51                 return result;
52         }
53 }