]> source.dussan.org Git - poi.git/blob
d3e9c4c41220d85e8c25749ef1a353c253260ace
[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
19 package org.apache.poi.hssf.record.formula.functions;
20
21 import junit.framework.Test;
22 import junit.framework.TestSuite;
23
24 /**
25  * Direct tests for all implementors of <code>Function</code>.
26  * 
27  * @author Josh Micich
28  */
29 public final class AllIndividualFunctionEvaluationTests {
30
31         // TODO - have this suite incorporated into a higher level one
32         public static Test suite() {
33                 TestSuite result = new TestSuite("Tests for org.apache.poi.hssf.record.formula.functions");
34                 result.addTestSuite(TestAverage.class);
35                 result.addTestSuite(TestCountFuncs.class);
36                 result.addTestSuite(TestDate.class);
37                 result.addTestSuite(TestFinanceLib.class);
38                 result.addTestSuite(TestIndex.class);
39                 result.addTestSuite(TestIsBlank.class);
40                 result.addTestSuite(TestLen.class);
41                 result.addTestSuite(TestMid.class);
42                 result.addTestSuite(TestMathX.class);
43                 result.addTestSuite(TestMatch.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
54 }