2using System.Collections.Generic;
9using Microsoft.VisualStudio.TestTools.UnitTesting;
22 _testDIContext = TestDIContextFactory.CreateDefaultContext();
29 bool executed =
false;
35 ObjectType = typeof(
Root),
48 Assert.IsTrue(executed);
56 bool executed =
false;
62 ObjectType = typeof(
Root),
64 Parameter = rootObject,
75 Assert.IsTrue(executed);
83 bool executed =
false;
86 Child childObject = rootObject.Children.AddNew();
87 childObject.
Data =
"Test child data";
92 ObjectType = typeof(
Root),
94 Parameter = rootObject,
105 Assert.IsTrue(executed);
113 bool executed =
false;
116 Child childObject = rootObject.Children.AddNew();
117 childObject.
Data =
"Test child data";
119 grandChildObject.
Data =
"Test grandchild data";
120 ApplicationContext applicationContext = _testDIContext.CreateTestApplicationContext();
124 ObjectType = typeof(
Root),
126 Parameter = rootObject,
137 Assert.IsTrue(executed);
147 ApplicationContext applicationContext = _testDIContext.CreateTestApplicationContext();
151 ObjectType = typeof(
Root),
153 Parameter = rootObject,
160 Assert.ThrowsException<Rules.ValidationException>(() => sut.
Initialize(args));
170 Child childObject = rootObject.Children.AddNew();
171 ApplicationContext applicationContext = _testDIContext.CreateTestApplicationContext();
175 ObjectType = typeof(
Root),
177 Parameter = rootObject,
184 Assert.ThrowsException<Rules.ValidationException>(() => sut.
Initialize(args));
194 Child childObject = rootObject.Children.AddNew();
195 childObject.
Data =
"Test child data";
197 ApplicationContext applicationContext = _testDIContext.CreateTestApplicationContext();
201 ObjectType = typeof(
Root),
203 Parameter = rootObject,
210 Assert.ThrowsException<Rules.ValidationException>(() => sut.
Initialize(args));
Provides consistent context information between the client and server DataPortal objects.
ExecutionLocations
Enum representing the locations code can execute.
LogicalExecutionLocations
Enum representing the logical execution location The setting is set to server when server is execting...
ContextDictionary LocalContext
Returns the application-specific context data that is local to the current AppDomain.
Class used as a wrapper for criteria based requests that use primitives
Arguments parameter passed to the interceptor methods.
DataPortal interceptor to perform revalidation on business objects
void Initialize(InterceptArgs e)
Interception handler run before a DataPortal operation
GrandChildren GrandChildren
void Initialize_ValidRootObjectWithChildAndGrandChild_NoExceptionRaised()
void Initialize_ValidRootObjectWithChild_NoExceptionRaised()
void Initialize_ValidRootObjectNoChildren_NoExceptionRaised()
static void ClassInitialize(TestContext context)
void Initialize_InvalidChildObject_ExceptionRaised()
void Initialize_InvalidGrandChildObject_ExceptionRaised()
void Initialize_PrimitiveCriteria_NoExceptionRaised()
void Initialize_InvalidRootObject_ExceptionRaised()
Type to carry context information for DI in unit tests
Interface defining the members of the data portal type.
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...
DataPortalOperations
List of data portal operations.