9using System.Data.SqlClient;
14using Microsoft.VisualStudio.TestTools.UnitTesting;
18using TestClass = NUnit.Framework.TestFixtureAttribute;
19using TestInitialize = NUnit.Framework.SetUpAttribute;
20using TestCleanup = NUnit.Framework.TearDownAttribute;
21using TestMethod = NUnit.Framework.TestAttribute;
22using System.Configuration;
40 Assert.IsNotNull(child);
49 object child = dp.AddNew();
59 dp.ManageObjectLifetime =
true;
60 dp.ObjectInstance = list;
61 dp.
RemoveItem(
null,
new Xaml.ExecuteEventArgs { MethodParameter = list[0] });
64 Assert.AreEqual(1, list.Count);
67 Assert.AreEqual(2, list.Count);
77 item.
Name =
"New Name";
81 Assert.IsNull(e.Error,
"Error should be null");
82 Assert.IsNotNull(e.NewObject,
"Object should exist");
83 Assert.AreEqual(((
Customer)e.NewObject).Method,
"Updating Customer New Name");
96 item.
Name =
"New Name";
101 Assert.IsNotNull(e.Error,
"Error should be null");
105 Assert.IsTrue(saved);
115 dp.
Saved += (o, e) =>
117 Assert.IsNull(e.Error,
"Error should be null");
118 Assert.IsNotNull(e.NewObject,
"Object should exist");
122 Assert.IsTrue(saved);
EventHandler< Csla.Core.SavedEventArgs > Saved
Event raised when an object has been saved.
override void RemoveItem(int index)
Marks the child object for deletion and moves it to the collection of deleted objects.
void BeginEdit()
Starts a nested edit on the object.
void TestSavedWithChanges()
void TestSavedWithChangesInvalid()
void ClearContextsAfterEachTest()
void TestSavedWithoutChanges()
void TestAddNewReturnsNull()
static ProviderList GetList()
Wraps and creates a CSLA .NET-style object that you can use as a binding source.
object ObjectInstance
Gets or sets a reference to the data object.