01: //--------------------------------------------------------------------------
02: // Copyright (c) 2004, Drew Davidson and Luke Blanshard
03: // All rights reserved.
04: //
05: // Redistribution and use in source and binary forms, with or without
06: // modification, are permitted provided that the following conditions are
07: // met:
08: //
09: // Redistributions of source code must retain the above copyright notice,
10: // this list of conditions and the following disclaimer.
11: // Redistributions in binary form must reproduce the above copyright
12: // notice, this list of conditions and the following disclaimer in the
13: // documentation and/or other materials provided with the distribution.
14: // Neither the name of the Drew Davidson nor the names of its contributors
15: // may be used to endorse or promote products derived from this software
16: // without specific prior written permission.
17: //
18: // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19: // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20: // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21: // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22: // COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23: // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24: // BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
25: // OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26: // AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27: // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
28: // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
29: // DAMAGE.
30: //--------------------------------------------------------------------------
31: package org.ognl.test;
32:
33: import junit.framework.TestSuite;
34: import org.ognl.test.objects.CorrectedObject;
35:
36: public class ClassMethodTest extends OgnlTestCase {
37: private static CorrectedObject CORRECTED = new CorrectedObject();
38:
39: private static Object[][] TESTS = {
40: // Methods on Class
41: { CORRECTED, "getClass().getName()",
42: CORRECTED.getClass().getName() },
43: { CORRECTED, "getClass().getInterfaces()",
44: CORRECTED.getClass().getInterfaces() },
45: {
46: CORRECTED,
47: "getClass().getInterfaces().length",
48: new Integer(
49: CORRECTED.getClass().getInterfaces().length) },
50: { null, "@System@class.getInterfaces()",
51: System.class.getInterfaces() },
52: { null, "@Class@class.getName()", Class.class.getName() },
53: { null, "@java.awt.image.ImageObserver@class.getName()",
54: java.awt.image.ImageObserver.class.getName() },
55:
56: };
57:
58: /*===================================================================
59: Public static methods
60: ===================================================================*/
61: public static TestSuite suite() {
62: TestSuite result = new TestSuite();
63:
64: for (int i = 0; i < TESTS.length; i++) {
65: result.addTest(new ClassMethodTest((String) TESTS[i][1],
66: TESTS[i][0], (String) TESTS[i][1], TESTS[i][2]));
67: }
68: return result;
69: }
70:
71: /*===================================================================
72: Constructors
73: ===================================================================*/
74: public ClassMethodTest() {
75: super ();
76: }
77:
78: public ClassMethodTest(String name) {
79: super (name);
80: }
81:
82: public ClassMethodTest(String name, Object root,
83: String expressionString, Object expectedResult,
84: Object setValue, Object expectedAfterSetResult) {
85: super (name, root, expressionString, expectedResult, setValue,
86: expectedAfterSetResult);
87: }
88:
89: public ClassMethodTest(String name, Object root,
90: String expressionString, Object expectedResult,
91: Object setValue) {
92: super (name, root, expressionString, expectedResult, setValue);
93: }
94:
95: public ClassMethodTest(String name, Object root,
96: String expressionString, Object expectedResult) {
97: super(name, root, expressionString, expectedResult);
98: }
99: }
|