< prev index next >

test/javax/management/MBeanServer/MBeanServerNotificationTest.java

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


  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 6689505
  27  * @summary Checks that MBeanServerNotification.toString contains the
  28  *          MBean name.
  29  * @author Daniel Fuchs

  30  * @modules java.management/com.sun.jmx.mbeanserver
  31  * @compile MBeanServerNotificationTest.java
  32  * @run main MBeanServerNotificationTest
  33  */
  34 
  35 import com.sun.jmx.mbeanserver.Util;
  36 import javax.management.*;
  37 import java.util.concurrent.*;
  38 
  39 public class MBeanServerNotificationTest {
  40     final static String[] names = {
  41         ":type=Wombat", "wombat:type=Wombat",null,
  42     };
  43     public static void main(String[] args) throws Exception {
  44         System.out.println("Test that MBeanServerNotification.toString " +
  45                 "contains the name of the MBean being registered " +
  46                 "or unregistered.");
  47         int failures = 0;
  48         final MBeanServer mbs = MBeanServerFactory.createMBeanServer();
  49         for (String str:names) {
  50             try {
  51                 final ObjectName name = (str==null)?null:new ObjectName(str);




  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 6689505
  27  * @summary Checks that MBeanServerNotification.toString contains the
  28  *          MBean name.
  29  * @author Daniel Fuchs
  30  *
  31  * @modules java.management/com.sun.jmx.mbeanserver
  32  *
  33  * @run main MBeanServerNotificationTest
  34  */
  35 
  36 import com.sun.jmx.mbeanserver.Util;
  37 import javax.management.*;
  38 import java.util.concurrent.*;
  39 
  40 public class MBeanServerNotificationTest {
  41     final static String[] names = {
  42         ":type=Wombat", "wombat:type=Wombat",null,
  43     };
  44     public static void main(String[] args) throws Exception {
  45         System.out.println("Test that MBeanServerNotification.toString " +
  46                 "contains the name of the MBean being registered " +
  47                 "or unregistered.");
  48         int failures = 0;
  49         final MBeanServer mbs = MBeanServerFactory.createMBeanServer();
  50         for (String str:names) {
  51             try {
  52                 final ObjectName name = (str==null)?null:new ObjectName(str);


< prev index next >