appcenter-sdk-dotnet/Tests/Microsoft.AppCenter.Test.Wi.../Utils/UnhandledExceptionEventArgs...

23 строки
648 B
C#

using Microsoft.AppCenter.Utils;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
namespace Microsoft.AppCenter.Test.Windows.Utils
{
[TestClass]
public class UnhandledExceptionEventArgsTest
{
/// <summary>
/// Validate that Unhandled exception args saves correct exception
/// </summary>
[TestMethod]
public void CheckExceptionReference()
{
Exception ex = new Exception();
UnhandledExceptionOccurredEventArgs args =
new UnhandledExceptionOccurredEventArgs(ex);
Assert.AreSame(ex, args.Exception);
}
}
}