private bool setQuerySaveMaxTest( DbSystem dbSystem) { uint uiSetValue = 117; uint uiGetValue; beginTest("Set Query Save Max"); try { dbSystem.setQuerySaveMax(uiSetValue); } catch (XFlaimException ex) { endTest(false, ex, "calling setQuerySaveMax"); return(false); } try { uiGetValue = dbSystem.getQuerySaveMax(); } catch (XFlaimException ex) { endTest(false, ex, "calling getQuerySaveMax"); return(false); } if (uiSetValue != uiGetValue) { endTest(false, false); System.Console.WriteLine("GetValue [{0}] != SetValue [{1}]", uiGetValue, uiSetValue); } endTest(false, true); return(true); }