9using System.Collections.Generic;
15using Microsoft.VisualStudio.TestTools.UnitTesting;
18using TestClass = NUnit.Framework.TestFixtureAttribute;
19using TestInitialize = NUnit.Framework.SetUpAttribute;
20using TestCleanup = NUnit.Framework.TearDownAttribute;
21using TestMethod = NUnit.Framework.TestAttribute;
34 _testDIContext = TestDIContextFactory.CreateDefaultContext();
46 Legacy test = GetLegacy(5);
57 catch { Assert.Inconclusive(); }
71 catch { Assert.Inconclusive(); }
91 catch { Assert.Inconclusive(); }
100 return dataPortal.
Create();
103 private Legacy GetLegacy(
int id)
107 return dataPortal.
Fetch(
new Legacy.Criteria(
id));
110 private void DeleteLegacy(
int id)
114 dataPortal.
Delete(
new Legacy.Criteria(
id));
T Save()
Saves the object to the database.
static void ClassInitialize(TestContext context)
Static dictionary-like class that offers similar functionality to GlobalContext This is used in tests...
static string GetResult(string key)
Get a result of an operation from the underlying results dictionary
Type to carry context information for DI in unit tests
Interface defining the members of the data portal type.
void Delete(params object[] criteria)
Called by a Shared (static in C#) method in the business class to cause immediate deletion of a speci...
object Fetch(params object[] criteria)
Called by a factory method in a business class to retrieve an object, which is loaded with values fro...
object Create(params object[] criteria)
Called by a factory method in a business class to create a new object, which is loaded with default v...