KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > admin > monitor > registry > spi > GeneratedMonitoringMBeanImplTest


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23
24 /*
25  * GeneratedMonitoringMBeanImplTest.java
26  * JUnit based test
27  *
28  * Created on April 1, 2004, 5:04 PM
29  */

30
31 package com.sun.enterprise.admin.monitor.registry.spi;
32
33 import javax.management.*;
34 import javax.management.j2ee.statistics.Stats JavaDoc;
35 import javax.management.j2ee.statistics.*;
36 import java.util.*;
37 import java.util.logging.*;
38 import java.lang.reflect.*;
39 import java.lang.*;
40 import junit.framework.*;
41
42 /**
43  *
44  * @author Rob
45  */

46 public class GeneratedMonitoringMBeanImplTest extends TestCase {
47     
48     public GeneratedMonitoringMBeanImplTest(java.lang.String JavaDoc testName) {
49         super(testName);
50     }
51     
52     public static Test suite() {
53         TestSuite suite = new TestSuite(GeneratedMonitoringMBeanImplTest.class);
54         return suite;
55     }
56     
57     /**
58      * Test of introspect method, of class com.sun.enterprise.admin.monitor.registry.spi.GeneratedMonitoringMBeanImpl.
59      */

60     public void testIntrospect() {
61         System.out.println("testIntrospect");
62         fail("The test case is empty.");
63     }
64     
65     /**
66      * Test of getAttribute method, of class com.sun.enterprise.admin.monitor.registry.spi.GeneratedMonitoringMBeanImpl.
67      */

68     public void testGetAttribute() {
69         System.out.println("testGetAttribute");
70         fail("The test case is empty.");
71     }
72     
73     /**
74      * Test of getAttributes method, of class com.sun.enterprise.admin.monitor.registry.spi.GeneratedMonitoringMBeanImpl.
75      */

76     public void testGetAttributes() {
77         System.out.println("testGetAttributes");
78         fail("The test case is empty.");
79     }
80     
81     /**
82      * Test of getMBeanInfo method, of class com.sun.enterprise.admin.monitor.registry.spi.GeneratedMonitoringMBeanImpl.
83      */

84     public void testGetMBeanInfo() {
85         System.out.println("testGetMBeanInfo");
86         fail("The test case is empty.");
87     }
88     
89     /**
90      * Test of invoke method, of class com.sun.enterprise.admin.monitor.registry.spi.GeneratedMonitoringMBeanImpl.
91      */

92     public void testInvoke() {
93         System.out.println("testInvoke");
94         fail("The test case is empty.");
95     }
96     
97     /**
98      * Test of setAttribute method, of class com.sun.enterprise.admin.monitor.registry.spi.GeneratedMonitoringMBeanImpl.
99      */

100     public void testSetAttribute() {
101         System.out.println("testSetAttribute");
102         fail("The test case is empty.");
103     }
104     
105     /**
106      * Test of setAttributes method, of class com.sun.enterprise.admin.monitor.registry.spi.GeneratedMonitoringMBeanImpl.
107      */

108     public void testSetAttributes() {
109         System.out.println("testSetAttributes");
110         fail("The test case is empty.");
111     }
112     
113     /**
114      * Test of listAttributes method, of class com.sun.enterprise.admin.monitor.registry.spi.GeneratedMonitoringMBeanImpl.
115      */

116     public void testListAttributes() {
117         System.out.println("testListAttributes");
118         fail("The test case is empty.");
119     }
120     
121     public static void main(java.lang.String JavaDoc[] args) {
122         junit.textui.TestRunner.run(suite());
123     }
124     
125     // TODO add test methods here, they have to start with 'test' name.
126
// for example:
127
// public void testHello() {}
128

129     
130 }
131
Popular Tags