public void testGetSetDebug() throws Exception {
    ILaunchConfigurationWorkingCopy wc = createWorkingCopy();
    boolean deflt = BootLaunchConfigurationDelegate.DEFAULT_ENABLE_DEBUG_OUTPUT;
    boolean other = !deflt;
    assertEquals(deflt, BootLaunchConfigurationDelegate.getEnableDebugOutput(wc));

    BootLaunchConfigurationDelegate.setEnableDebugOutput(wc, other);
    assertEquals(other, BootLaunchConfigurationDelegate.getEnableDebugOutput(wc));

    BootLaunchConfigurationDelegate.setEnableDebugOutput(wc, deflt);
    assertEquals(deflt, BootLaunchConfigurationDelegate.getEnableDebugOutput(wc));
  }