KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gui > propertyeditors > PropertyType_Integer


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19
20 package gui.propertyeditors;
21
22 import org.netbeans.junit.NbTestSuite;
23
24 /**
25  * Tests of Integer Property Editor.
26  *
27  * @author Marian.Mirilovic@Sun.Com
28  */

29 public class PropertyType_Integer extends PropertyEditorsTest {
30
31     public String JavaDoc propertyName_L;
32     public String JavaDoc propertyValue_L;
33     public String JavaDoc propertyValueExpectation_L;
34
35     public boolean waitDialog=false;
36
37     /** Creates a new instance of PropertyType_Integer */
38     public PropertyType_Integer(String JavaDoc testName) {
39         super(testName);
40     }
41
42
43     public void setUp(){
44         propertyName_L = "Integer";
45         super.setUp();
46     }
47     
48     public static NbTestSuite suite() {
49         NbTestSuite suite = new NbTestSuite();
50         suite.addTest(new PropertyType_Integer("testByInPlace"));
51         suite.addTest(new PropertyType_Integer("testByInPlaceInvalid"));
52         return suite;
53     }
54     
55     public void testByInPlace(){
56         propertyValue_L = "1234567890";
57         propertyValueExpectation_L = propertyValue_L;
58         waitDialog = false;
59         setByInPlace(propertyName_L, propertyValue_L, true);
60     }
61     
62     public void testByInPlaceInvalid(){
63         propertyValue_L = "12345678901";
64         propertyValueExpectation_L = propertyValue_L;
65         waitDialog = true;
66         setByInPlace(propertyName_L, propertyValue_L, false);
67     }
68     
69     public void verifyPropertyValue(boolean expectation) {
70         verifyExpectationValue(propertyName_L,expectation, propertyValueExpectation_L, propertyValue_L, waitDialog);
71     }
72     
73     public void setCustomizerValue(){}
74     public void verifyCustomizerLayout(){}
75     
76     /** Test could be executed internaly in Forte without XTest
77      * @param args arguments from command line
78      */

79     public static void main(String JavaDoc[] args) {
80         //junit.textui.TestRunner.run(new NbTestSuite(PropertyType_Integer.class));
81
junit.textui.TestRunner.run(suite());
82     }
83 }
84
Popular Tags