11using System.Diagnostics;
15using System.Threading.Tasks;
19using TestClass = NUnit.Framework.TestFixtureAttribute;
20using TestInitialize = NUnit.Framework.SetUpAttribute;
21using TestCleanup = NUnit.Framework.TearDownAttribute;
22using TestMethod = NUnit.Framework.TestAttribute;
23using TestSetup = NUnit.Framework.SetUpAttribute;
25using Microsoft.VisualStudio.TestTools.UnitTesting;
38 context.Assert.Success();
46 context.Assert.IsNotNull(actual);
48 context.Assert.IsTrue(actual.IsNew);
49 context.Assert.IsTrue(actual.IsDirty);
50 context.Assert.IsFalse(actual.IsDeleted);
51 context.Assert.AreEqual(
"create", actual.DataPortalMethod);
52 context.Assert.Success();
67 context.Assert.IsFalse(actual.IsNew);
68 context.Assert.IsFalse(actual.IsDirty);
69 context.Assert.AreEqual(
"insert", actual.DataPortalMethod);
70 context.Assert.Success();
84 context.Assert.IsFalse(root.IsNew);
85 context.Assert.IsTrue(root.IsDirty);
87 var actual = await root.SaveAsync();
89 context.Assert.IsFalse(actual.IsNew);
90 context.Assert.IsFalse(actual.IsDirty);
91 context.Assert.AreEqual(
"update", actual.DataPortalMethod);
92 context.Assert.Success();
105 context.Assert.IsFalse(root.IsNew);
106 context.Assert.IsTrue(root.IsDirty);
107 context.Assert.IsTrue(root.IsDeleted);
109 var actual = await root.SaveAsync();
110 context.Assert.IsTrue(actual.IsNew);
111 context.Assert.IsTrue(actual.IsDirty);
112 context.Assert.IsFalse(actual.IsDeleted);
113 context.Assert.AreEqual(
"delete", actual.DataPortalMethod);
114 context.Assert.Success();
124 Assert.AreEqual(
"fetch", actual.DataPortalMethod);
125 Assert.IsFalse(actual.IsNew);
126 Assert.IsFalse(actual.IsDeleted);
127 Assert.IsFalse(actual.IsDirty);
async Task< T > SaveAsync()
Saves the object to the database.
Client side data portal used for making asynchronous data portal calls in .NET.
async Task< T > CreateAsync(params object[] criteria)
Called by a factory method in a business class or by the UI to create a new object,...
async Task< T > FetchAsync(params object[] criteria)
Called by a factory method in a business class or by the UI to Fetch a new object,...
static readonly Guid MockEditableRootId
UnitTestContext GetContext()
async Task When_New_EditableRoot_is_Saved_Then_returned_object_isMarked_NotNew_NotDirty()
async Task When_Fetching_EditableRoot_the_object_returned_ShouldNotBe_Marked_New_Deleted_or_Dirty()
async Task If_EditableRoot_IsDeleted_Then_Saved_Returns_New_Dirty_Instance_of_Root_That_is_no_longer_marked_Deleted()
async Task When_EditableRoot_is_Saved_Then_we_receive_an_object_back_that_is_Marked_as_NotNew_NotDirty()
async Task When_CreateNew_Returns_EditableRoot_Then_returned_object_is_Marked_New_Dirty_and_NotDeleted()