public void testGetSetJMXPort() throws Exception {
    ILaunchConfigurationWorkingCopy wc = createWorkingCopy();
    assertEquals("", BootLaunchConfigurationDelegate.getJMXPort(wc));

    BootLaunchConfigurationDelegate.setJMXPort(wc, "something");
    assertEquals("something", BootLaunchConfigurationDelegate.getJMXPort(wc));
  }