CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
CommandBaseTest.cs
Go to the documentation of this file.
1using System;
2using System.Text;
3using System.Collections.Generic;
4using System.Linq;
5using Csla.Core;
6using Microsoft.VisualStudio.TestTools.UnitTesting;
7using Csla.TestHelpers;
8
10{
14 [TestClass]
15 public class CommandBaseTest : Csla.Server.ObjectFactory
16 {
17 public CommandBaseTest(ApplicationContext applicationContext) : base(applicationContext)
18 {
19 }
20
21 private TestContext _testContextInstance;
22 private TestDIContext _testDIContext = TestDIContextFactory.CreateDefaultContext();
23
29 {
30 get
31 {
32 return _testContextInstance;
33 }
34 set
35 {
36 _testContextInstance = value;
37 }
38 }
39
41 public static void ClassInitialize(TestContext testContext)
42 {
43
44 }
45
46 #region Additional test attributes
47 //
48 // You can use the following additional attributes as you write your tests:
49 //
50 // Use ClassInitialize to run code before running the first test in the class
51 // [ClassInitialize()]
52 // public static void MyClassInitialize(TestContext testContext) { }
53 //
54 // Use ClassCleanup to run code after all tests in a class have run
55 // [ClassCleanup()]
56 // public static void MyClassCleanup() { }
57 //
58 // Use TestInitialize to run code before running each test
59 // [TestInitialize()]
60 // public void MyTestInitialize() { }
61 //
62 // Use TestCleanup to run code after each test has run
63 // [TestCleanup()]
64 // public void MyTestCleanup() { }
65 //
66 #endregion
67
68 [TestMethod]
70 {
71 IDataPortal<CommandObject> dataPortal = _testDIContext.CreateDataPortal<CommandObject>();
72 var cmd = dataPortal.Create();
73
74 Assert.AreEqual(string.Empty, cmd.Name);
75 Assert.AreEqual(0, cmd.Num);
76 }
77
78 [TestMethod]
80 {
81 IDataPortal<CommandObject> dataPortal = _testDIContext.CreateDataPortal<CommandObject>();
82 var cmd = dataPortal.Create();
83
86
87 Assert.AreEqual("Rocky", cmd.Name);
88 Assert.AreEqual(8, cmd.Num);
89 }
90
91
92 [TestMethod]
94 {
95 IDataPortal<CommandObject> dataPortal = _testDIContext.CreateDataPortal<CommandObject>();
96 var cmd = dataPortal.Create();
97
100
101 LoadProperty(cmd, nameProperty, "Rocky");
102 LoadProperty(cmd, numProperty, 8);
103
104 Assert.AreEqual("Rocky", cmd.Name);
105 Assert.AreEqual(8, cmd.Num);
106 }
107
108
109 [TestMethod]
111 {
112 IDataPortal<CommandObject> dataPortal = _testDIContext.CreateDataPortal<CommandObject>();
113 var cmd = dataPortal.Create();
114
117
118 var name = ReadProperty(cmd, CommandObject.NameProperty);
119 var num = ReadProperty(cmd, CommandObject.NumProperty);
120
121 Assert.AreEqual("Rocky", name);
122 Assert.AreEqual(8, num);
123 }
124
125
126 [TestMethod]
128 {
129 IDataPortal<CommandObject> dataPortal = _testDIContext.CreateDataPortal<CommandObject>();
130 var cmd = dataPortal.Create();
131
134
135 LoadProperty(cmd, nameProperty, "Rocky");
136 LoadProperty(cmd, numProperty, 8);
137
138 var name = ReadProperty(cmd, nameProperty);
139 var num = ReadProperty(cmd, numProperty);
140
141 Assert.AreEqual("Rocky", name);
142 Assert.AreEqual(8, num);
143 }
144 }
145}
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()
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.
Definition: IDataPortalT.cs:17
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...