3using System.Collections.Generic;
6using Microsoft.VisualStudio.TestTools.UnitTesting;
22 private TestDIContext _testDIContext = TestDIContextFactory.CreateDefaultContext();
32 return _testContextInstance;
36 _testContextInstance = value;
46 #region Additional test attributes
72 var cmd = dataPortal.
Create();
74 Assert.AreEqual(
string.Empty, cmd.Name);
75 Assert.AreEqual(0, cmd.Num);
82 var cmd = dataPortal.
Create();
87 Assert.AreEqual(
"Rocky", cmd.Name);
88 Assert.AreEqual(8, cmd.Num);
96 var cmd = dataPortal.
Create();
104 Assert.AreEqual(
"Rocky", cmd.Name);
105 Assert.AreEqual(8, cmd.Num);
113 var cmd = dataPortal.
Create();
121 Assert.AreEqual(
"Rocky", name);
122 Assert.AreEqual(8, num);
130 var cmd = dataPortal.
Create();
141 Assert.AreEqual(
"Rocky", name);
142 Assert.AreEqual(8, num);
Provides consistent context information between the client and server DataPortal objects.
void LoadProperty(object obj, IPropertyInfo propertyInfo, object newValue)
Loads a property's managed field with the supplied value.
object ReadProperty(object obj, IPropertyInfo propertyInfo)
Reads a property's managed field value.
Summary description for CommandBaseTest
static void ClassInitialize(TestContext testContext)
TestContext TestContext
Gets or sets the test context which provides information about and functionality for the current test...
CommandBaseTest(ApplicationContext applicationContext)
void CommandBase_CanReadPropertiesUsingNonGenericPropertyInfo_WithObjectFactory()
void CommandBase_CanLoadPropertiesUsingNonGenericPropertyInfo_WithObjectFactory()
void CommandBase_CanLoadProperties_WithObjectFactory()
void CommandBase_AssertDefaultValues()
void CommandBase_CanReadProperties_WithObjectFactory()
static readonly PropertyInfo< string > NameProperty
static readonly PropertyInfo< int > NumProperty
Type to carry context information for DI in unit tests
Maintains metadata about a property.
Interface defining the members of the data portal type.
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...