KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gui > propertyeditors > PropertyType_HTMLBrowser


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 /**
26  * Tests of HTML Browser Property Editor.
27  *
28  * @author Marian.Mirilovic@Sun.Com
29  */

30 public class PropertyType_HTMLBrowser extends PropertyEditorsTest {
31
32     public String JavaDoc propertyName_L;
33     public String JavaDoc propertyValue_L;
34     public String JavaDoc propertyValueExpectation_L;
35
36     public boolean waitDialog = false;
37
38
39     /** Creates a new instance of PropertyType_HTMLBrowser */
40     public PropertyType_HTMLBrowser(String JavaDoc testName) {
41         super(testName);
42     }
43
44
45     public void setUp(){
46         propertyName_L = "Html Browser";
47         super.setUp();
48     }
49     
50     public static NbTestSuite suite() {
51         NbTestSuite suite = new NbTestSuite();
52         suite.addTest(new PropertyType_HTMLBrowser("testByComboExternal"));
53         suite.addTest(new PropertyType_HTMLBrowser("testByComboSWINGBrowser"));
54         return suite;
55     }
56     
57     public void testByComboExternal(){
58         propertyValue_L = org.netbeans.jellytools.Bundle.getStringTrimmed("org.netbeans.modules.extbrowser.Bundle", "Services/Browsers/SimpleExtBrowser.settings"); // External Browser (Command Line)
59
propertyValueExpectation_L = propertyValue_L;
60         waitDialog = false;
61         setByCombo(propertyName_L, propertyValue_L, true);
62     }
63     
64     public void testByComboSWINGBrowser(){
65         propertyValue_L = org.netbeans.jellytools.Bundle.getStringTrimmed("org.netbeans.core.ui.Bundle", "Services/Browsers/SwingBrowser.ser"); // Swing HTML Browser
66
propertyValueExpectation_L = propertyValue_L;
67         waitDialog = false;
68         setByCombo(propertyName_L, propertyValue_L, true);
69     }
70     
71     public void setCustomizerValue() {
72     }
73     
74     public void verifyPropertyValue(boolean expectation) {
75         verifyExpectationValue(propertyName_L,expectation, propertyValueExpectation_L, propertyValue_L, false);
76     }
77     
78     
79     /** Test could be executed internaly in Forte without XTest
80      * @param args arguments from command line
81      */

82     public static void main(String JavaDoc[] args) {
83         //junit.textui.TestRunner.run(new NbTestSuite(PropertyType_HTMLBrowser.class));
84
junit.textui.TestRunner.run(suite());
85     }
86     
87     public void verifyCustomizerLayout() {
88     }
89     
90 }
91
Popular Tags