forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSynchronousOperationExceptionTest.cs
More file actions
64 lines (54 loc) · 2.13 KB
/
Copy pathSynchronousOperationExceptionTest.cs
File metadata and controls
64 lines (54 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
using Microsoft.TestCommon;
namespace System.Web.Mvc.Async.Test
{
public class SynchronousOperationExceptionTest
{
[Fact]
public void ConstructorWithMessageAndInnerExceptionParameter()
{
// Arrange
Exception innerException = new Exception();
// Act
SynchronousOperationException ex = new SynchronousOperationException("the message", innerException);
// Assert
Assert.Equal("the message", ex.Message);
Assert.Equal(innerException, ex.InnerException);
}
[Fact]
public void ConstructorWithMessageParameter()
{
// Act
SynchronousOperationException ex = new SynchronousOperationException("the message");
// Assert
Assert.Equal("the message", ex.Message);
}
[Fact]
public void ConstructorWithoutParameters()
{
// Act & assert
Assert.Throws<SynchronousOperationException>(
delegate { throw new SynchronousOperationException(); });
}
[Fact]
public void TypeIsSerializable()
{
// Arrange
MemoryStream ms = new MemoryStream();
BinaryFormatter formatter = new BinaryFormatter();
SynchronousOperationException ex = new SynchronousOperationException("the message", new Exception("inner exception"));
// Act
formatter.Serialize(ms, ex);
ms.Position = 0;
SynchronousOperationException deserialized = formatter.Deserialize(ms) as SynchronousOperationException;
// Assert
Assert.NotNull(deserialized);
Assert.Equal("the message", deserialized.Message);
Assert.NotNull(deserialized.InnerException);
Assert.Equal("inner exception", deserialized.InnerException.Message);
}
}
}