public void ExceptionHandlingFailCallBackIleCalisiyorMu() { string error = ""; ExceptionManager.getInstance().TryCatch(() => { Islem1.IslemYap(); }, MethodBase.GetCurrentMethod(), null, i => { error = ExceptionManager.getInstance().HandleTheError(i, "Benim Başlağım 1"); }, false); Assert.AreNotEqual(error, ""); }
public void ExceptionHandlingCalisiyorMu() { string error = ""; try { Islem1.IslemYap(); } catch (System.Exception ex) { error = ExceptionManager.getInstance().HandleTheError(ex, "Benim Başlığım"); } Assert.AreNotEqual(error, ""); }