-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathRoutingTests.cs
More file actions
28 lines (22 loc) · 1011 Bytes
/
RoutingTests.cs
File metadata and controls
28 lines (22 loc) · 1011 Bytes
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
using System.Threading.Tasks;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Cleipnir.ResilientFunctions.Tests.InMemoryTests.RFunctionTests;
[TestClass]
public class RoutingTests : TestTemplates.FunctionTests.RoutingTests
{
[TestMethod]
public override Task MessageIsRoutedToParamlessInstance()
=> MessageIsRoutedToParamlessInstance(FunctionStoreFactory.Create());
[TestMethod]
public override Task MessageIsRoutedToActionInstance()
=> MessageIsRoutedToActionInstance(FunctionStoreFactory.Create());
[TestMethod]
public override Task MessageIsRoutedToFuncInstance()
=> MessageIsRoutedToFuncInstance(FunctionStoreFactory.Create());
[TestMethod]
public override Task MessageIsRoutedUsingRoutingInfo()
=> MessageIsRoutedUsingRoutingInfo(FunctionStoreFactory.Create());
[TestMethod]
public override Task ParamlessInstanceIsStartedByMessage()
=> ParamlessInstanceIsStartedByMessage(FunctionStoreFactory.Create());
}