public void Introspection_Preference_Missing()
        {
            IntrospectionT.DeletePref();
            string retVal = Introspection.GetOverride(Introspection.IntrospectionEntity.DentalXChangeDwsURL, "thisIsADefaultURL");

            //Because there is no preference in the DB we should get back the default value we passed in.
            Assert.AreEqual(retVal, "thisIsADefaultURL");
        }
 public static void CleanupIntrospection()
 {
     IntrospectionT.DeletePref();
 }