< prev index next >

test/java/lang/management/ManagementFactory/PlatformMBeanServerTest.java

Print this page
rev 16783 : 8176176: fix @modules in jdk_svc tests
Reviewed-by: duke


   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug     4947536
  27  * @summary Basic unit test of ManagementFactory.getPlatformMBeanServer()
  28  * @author  Mandy Chung
  29  * @modules jdk.management
  30  */
  31 
  32 import java.lang.management.*;
  33 import static java.lang.management.ManagementFactory.*;
  34 import java.util.*;
  35 import java.util.logging.LogManager;
  36 
  37 import javax.management.MBeanServer;
  38 import javax.management.ObjectName;
  39 
  40 public class PlatformMBeanServerTest {
  41     public static void main(String[] argv) throws Exception {
  42         MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
  43         printMBeans(mbs);
  44 
  45         // validate if all standard JVM MBeans are registered
  46         checkStandardMBeans(mbs);
  47 
  48         // validate if all platform MBeans are registered
  49         checkPlatformMBeans(mbs);




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug     4947536
  27  * @summary Basic unit test of ManagementFactory.getPlatformMBeanServer()
  28  * @author  Mandy Chung

  29  */
  30 
  31 import java.lang.management.*;
  32 import static java.lang.management.ManagementFactory.*;
  33 import java.util.*;
  34 import java.util.logging.LogManager;
  35 
  36 import javax.management.MBeanServer;
  37 import javax.management.ObjectName;
  38 
  39 public class PlatformMBeanServerTest {
  40     public static void main(String[] argv) throws Exception {
  41         MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
  42         printMBeans(mbs);
  43 
  44         // validate if all standard JVM MBeans are registered
  45         checkStandardMBeans(mbs);
  46 
  47         // validate if all platform MBeans are registered
  48         checkPlatformMBeans(mbs);


< prev index next >