9using System.Threading.Tasks;
11using Microsoft.VisualStudio.TestTools.UnitTesting;
16using TestClass = NUnit.Framework.TestFixtureAttribute;
17using TestInitialize = NUnit.Framework.SetUpAttribute;
18using TestCleanup = NUnit.Framework.TearDownAttribute;
19using TestMethod = NUnit.Framework.TestAttribute;
32 _testDIContext = TestDIContextFactory.CreateDefaultContext();
42 await root.FetchChildAsync(childDataPortal);
44 Assert.IsFalse(root.Child.IsDirty,
"Child should not be dirty");
45 Assert.AreEqual(
"Fetched", root.Child.Status,
"Child status incorrect after fetch");
47 root = await root.SaveAsync();
49 Assert.AreEqual(
"Fetched", root.Child.Status,
"Child status incorrect after Save");
58 var root = await dataPortal.CreateAsync();
59 await root.FetchChildAsync(childDataPortal);
61 Assert.IsFalse(root.Child.IsDirty,
"Child should not be dirty");
62 Assert.AreEqual(
"Fetched", root.Child.Status,
"Child status incorrect after fetch");
64 root = await root.SaveAsync();
66 Assert.AreEqual(
"Updated", root.Child.Status,
"Child status incorrect after Save");
static void ClassInitialize(TestContext context)
async Task CreateAndSaveChildAsync()
async Task CreateAndSaveAnyChildAsync()
async Task CreateAsync([Inject] IChildDataPortal< Child > childDataPortal, [Inject]IChildDataPortal< ChildList > childListDataPortal)
Type to carry context information for DI in unit tests
Interface defining the members of the child data portal type.
Interface defining the members of the data portal type.