9using System.Collections.Generic;
17using Microsoft.VisualStudio.TestTools.UnitTesting;
21using TestClass = NUnit.Framework.TestFixtureAttribute;
22using TestInitialize = NUnit.Framework.SetUpAttribute;
23using TestCleanup = NUnit.Framework.TearDownAttribute;
24using TestMethod = NUnit.Framework.TestAttribute;
37 _testDIContext = TestDIContextFactory.CreateDefaultContext();
54 var proxy = CreateTestHttpProxy();
55 var method = proxy.GetType().BaseType.GetMethods(System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)
56 .Where(r => r.Name ==
"GetRoutingToken")
59 string result = (string)method.Invoke(proxy,
new object[] { typeof(
RoutingTest) });
60 Assert.AreEqual(
"mytag", result);
66 var proxy = CreateTestHttpProxy();
67 var method = proxy.GetType().GetMethods(System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)
68 .Where(r => r.Name ==
"CreateOperationTag")
70 string result = (string)method.Invoke(proxy,
new object[] {
"create",
"",
"" });
71 Assert.AreEqual(
"create", result);
77 var proxy = CreateTestHttpProxy();
78 var method = proxy.GetType().GetMethods(System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)
79 .Where(r => r.Name ==
"CreateOperationTag")
81 string result = (string)method.Invoke(proxy,
new object[] {
"create",
"",
"mytag" });
82 Assert.AreEqual(
"create/mytag-", result);
88 var proxy = CreateTestHttpProxy();
89 var method = proxy.GetType().GetMethods(System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)
90 .Where(r => r.Name ==
"CreateOperationTag")
92 string result = (string)method.Invoke(proxy,
new object[] {
"create",
"v1",
"" });
93 Assert.AreEqual(
"create/-v1", result);
99 var proxy = CreateTestHttpProxy();
100 var method = proxy.GetType().GetMethods(System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)
101 .Where(r => r.Name ==
"CreateOperationTag")
103 string result = (string)method.Invoke(proxy,
new object[] {
"create",
"v1",
"mytag" });
104 Assert.AreEqual(
"create/mytag-v1", result);
115 System.Net.Http.HttpClient httpClient;
117 var applicationContext = _testDIContext.CreateTestApplicationContext();
118 httpClient =
new System.Net.Http.HttpClient();
127 [DataPortalServerRoutingTag(
"mytag")]
This is the base class from which most business objects will be derived.
Implements a data portal proxy to relay data portal calls to a remote application server by using htt...
Type to carry context information for DI in unit tests
void CreateTagNoVersionNoRoute()
static void ClassInitialize(TestContext context)
void CreateTagNoVersion()
@ Serializable
Prevents updating or inserting until the transaction is complete.