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


< prev index next >