KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > DataLoaderTests > DataObjectTest > Manipulation


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 DataLoaderTests.DataObjectTest;
21
22 import junit.framework.*;
23 import org.netbeans.junit.*;
24
25 public class Manipulation extends NbTestCase {
26
27     public Manipulation(java.lang.String JavaDoc testName) {
28         super(testName);
29     }
30
31     public static void main(java.lang.String JavaDoc[] args) {
32         junit.textui.TestRunner.run(suite());
33     }
34
35     private DataObjectTest T = null;
36
37     protected void setUp(){
38         System.err.println("xxxxx");
39         T = new DataObjectTest("Dummy");
40         //now setting workdir - this class will write nothing into the logs, only the utility class should,
41
//however into location for this class
42
log(Manager.getWorkDirPath());
43         T.work = Manager.getWorkDirPath()+
44         java.io.File.separator + this.getClass().getName().replace('.',java.io.File.separatorChar)+
45         java.io.File.separator + getName();
46     }
47     /*
48     public void testAWTFormManipulation() throws Exception {
49         new DataLoaderTests.DataObjectTest.manipulation.AWTFormObject.AWTFormObject_manipulation("testDOManipulation").testDOManipulation();
50     }*/

51     /*
52     public void testClassManipulation() throws Exception {
53         new DataLoaderTests.DataObjectTest.manipulation.ClassObject.ClassObject_manipulation("testDOManipulation").testDOManipulation();
54     }*/

55     public void testHTMLManipulation()throws Exception JavaDoc {
56         new DataLoaderTests.DataObjectTest.manipulation.HTMLObject.HTMLObject_manipulation("testDOManipulation").testDOManipulation();
57     }
58     public void testImageManipulation()throws Exception JavaDoc{
59         new DataLoaderTests.DataObjectTest.manipulation.ImageObject.ImageObject_manipulation("testDOManipulation").testDOManipulation();
60     }
61     public void testJSPManipulation() throws Exception JavaDoc{
62         new DataLoaderTests.DataObjectTest.manipulation.JSPObject.JSPObject_manipulation("testDOManipulation").testDOManipulation();
63     }
64     
65     public void testJavaFormManipulation()throws Exception JavaDoc{
66         new DataLoaderTests.DataObjectTest.manipulation.JavaSourceObject.JavaSourceObject_manipulation("testDOManipulation").testDOManipulation();
67     }
68     /**
69      * removed from suite because refactoring show dialgs
70      *
71     public void testPackageManipulation()throws Exception{
72         new DataLoaderTests.DataObjectTest.manipulation.Package.Package_manipulation("testDOManipulation").testDOManipulation();
73     }
74      **/

75     public void testSecurityJAppletManipulation()throws Exception JavaDoc{
76         new DataLoaderTests.DataObjectTest.manipulation.SecurityJApplet.SecurityJApplet_manipulation("testDOManipulation").testDOManipulation();
77     }
78     
79     public void testSwingFormManipulation() throws Exception JavaDoc {
80         new DataLoaderTests.DataObjectTest.manipulation.SwingFormObject.SwingFormObject_manipulation("testDOManipulation").testDOManipulation();
81     }
82     public void testTextualManipulation() throws Exception JavaDoc {
83         new DataLoaderTests.DataObjectTest.manipulation.TextualObject.TextualObject_manipulation("testDOManipulation").testDOManipulation();
84     }
85     public void testURLManipulation() throws Exception JavaDoc {
86         new DataLoaderTests.DataObjectTest.manipulation.URLObject.URLObject_manipulation("testDOManipulation").testDOManipulation();
87     }
88     
89     public static Test suite() {
90         NbTestSuite suite = new NbTestSuite(Manipulation.class);
91         return suite;
92     }
93     
94 }
95
Popular Tags