public void testClearProperties() throws Exception {
   ILaunchConfigurationWorkingCopy wc = createWorkingCopy();
   BootLaunchConfigurationDelegate.setProperties(
       wc, Arrays.asList(pv("some", "thing", true), pv("some.other", "thing", false)));
   assertFalse(BootLaunchConfigurationDelegate.getProperties(wc).isEmpty());
   BootLaunchConfigurationDelegate.clearProperties(wc);
   assertTrue(BootLaunchConfigurationDelegate.getProperties(wc).isEmpty());
 }