當前位置: 首頁>>代碼示例>>C#>>正文


C# Exception.Equals方法代碼示例

本文整理匯總了C#中System.Exception.Equals方法的典型用法代碼示例。如果您正苦於以下問題:C# Exception.Equals方法的具體用法?C# Exception.Equals怎麽用?C# Exception.Equals使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.Exception的用法示例。


在下文中一共展示了Exception.Equals方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Compare

 public IEnumerable<ExceptionComparisonDifference> Compare(Exception expected, Exception actual)
 {
     if (!expected.Equals(actual))
         yield return new ExceptionComparisonDifference(expected, actual, "-");
 }
開發者ID:ToJans,項目名稱:AggregateSource,代碼行數:5,代碼來源:ExceptionCentricAggregateCommandTestRunnerTests.cs

示例2: ShowErrorWasCalledWith

public virtual bool ShowErrorWasCalledWith(Exception e){
return (
e.Equals(ShowErrorParameter_e_LastCalledWith) );
}
開發者ID:pratik136,項目名稱:Flowdock.NET,代碼行數:4,代碼來源:MessageServiceMoqaLate.cs

示例3: Good5

 public static bool Good5(Exception x, DivideByZeroException y)
 {
     return x.Equals(y);
 }
開發者ID:dbremner,項目名稱:smokey,代碼行數:4,代碼來源:UnrelatedEqualsTest.cs

示例4: CreateExceptionWithInnerReturnsCorrectResult

 public void CreateExceptionWithInnerReturnsCorrectResult()
 {
     // Fixture setup
     var value = Guid.NewGuid().ToString();
     var inner = new Exception();
     var expected = new Exception();
     var cmd = new DelegatingGuardClauseCommand { OnCreateExceptionWithInner = (v, e) => value == v && inner.Equals(e) ? expected : new Exception() };
     var sut = new ReflectionExceptionUnwrappingCommand(cmd);
     // Exercise system
     var result = sut.CreateException(value, inner);
     // Verify outcome
     Assert.Equal(expected, result);
     // Teardown
 }
開發者ID:RyanLiu99,項目名稱:AutoFixture,代碼行數:14,代碼來源:ReflectionExceptionUnwrappingCommandTest.cs

示例5: VerifyThrowsWhenCommandThrowsUnexpectedException

 public void VerifyThrowsWhenCommandThrowsUnexpectedException()
 {
     // Fixture setup
     var expectedInner = new Exception();
     var expected = new Exception();
     var cmd = new DelegatingGuardClauseCommand
     {
         OnExecute = v => { throw expectedInner; },
         OnCreateExceptionWithInner = (v, e) => v == "\"Guid.Empty\"" && expectedInner.Equals(e) ? expected : new Exception(),
         RequestedType = typeof(Guid)
     };
     var sut = new EmptyGuidBehaviorExpectation();
     // Exercise system and verify outcome
     var result = Assert.Throws<Exception>(() =>
         sut.Verify(cmd));
     Assert.Equal(expected, result);
     // Teardown
 }
開發者ID:RyanLiu99,項目名稱:AutoFixture,代碼行數:18,代碼來源:EmptyGuidBehaviorExpectationTest.cs


注:本文中的System.Exception.Equals方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。