public void testIsModelStateChanging() throws IOException, CoreException {
   IStructuredModel model = getTestModel();
   try {
     assertFalse("model should not be changing", model.isModelStateChanging());
   } finally {
     if (model != null) {
       model.releaseFromEdit();
     }
   }
 }