forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAsyncActionDescriptorTest.cs
More file actions
53 lines (45 loc) · 1.72 KB
/
Copy pathAsyncActionDescriptorTest.cs
File metadata and controls
53 lines (45 loc) · 1.72 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
// 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.Collections.Generic;
using Microsoft.TestCommon;
using Moq;
namespace System.Web.Mvc.Async.Test
{
public class AsyncActionDescriptorTest
{
[Fact]
public void SynchronousExecuteThrows()
{
// Arrange
AsyncActionDescriptor actionDescriptor = new TestableAsyncActionDescriptor();
// Act & Assert
Assert.Throws<InvalidOperationException>(
() => actionDescriptor.Execute(new Mock<ControllerContext>().Object, parameters: null),
"The asynchronous action method 'testAction' cannot be executed synchronously."
);
}
private class TestableAsyncActionDescriptor : AsyncActionDescriptor
{
public override string ActionName
{
get { return "testAction"; }
}
public override ControllerDescriptor ControllerDescriptor
{
get { throw new NotImplementedException(); }
}
public override IAsyncResult BeginExecute(ControllerContext controllerContext, IDictionary<string, object> parameters, AsyncCallback callback, object state)
{
throw new NotImplementedException();
}
public override object EndExecute(IAsyncResult asyncResult)
{
throw new NotImplementedException();
}
public override ParameterDescriptor[] GetParameters()
{
throw new NotImplementedException();
}
}
}
}