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
PropertyInfoTests.cs
Go to the documentation of this file.
1
//-----------------------------------------------------------------------
2
// <copyright file="PropertyInfoTests.cs" company="Marimer LLC">
3
// Copyright (c) Marimer LLC. All rights reserved.
4
// Website: https://cslanet.com
5
// </copyright>
6
// <summary>no summary</summary>
7
//-----------------------------------------------------------------------
8
using
System;
9
#if !NUNIT
10
using
System.Diagnostics;
11
using
Csla
.
TestHelpers
;
12
using
Microsoft
.VisualStudio.TestTools.UnitTesting;
13
#else
14
using
NUnit.Framework;
15
using
TestClass = NUnit.Framework.TestFixtureAttribute;
16
using
TestInitialize = NUnit.Framework.SetUpAttribute;
17
using
TestCleanup = NUnit.Framework.TearDownAttribute;
18
using
TestMethod = NUnit.Framework.TestAttribute;
19
#endif
20
21
namespace
Csla.Test.PropertyInfo
22
{
23
[TestClass]
24
public
class
PropertyInfoTests
25
{
26
private
static
TestDIContext
_testDIContext;
27
28
[
ClassInitialize
]
29
public
static
void
ClassInitialize
(TestContext context)
30
{
31
_testDIContext = TestDIContextFactory.CreateDefaultContext();
32
}
33
34
[TestMethod]
35
public
void
TestName
()
36
{
37
Assert.AreEqual(
PropertyInfoRoot
.
_nameProperty
.Name,
PropertyInfoRoot
.
_nameProperty
.FriendlyName);
38
}
39
40
[TestMethod]
41
public
void
TestNameDataAnnotations
()
42
{
43
Assert.AreEqual(
"Name: DataAnnotations"
,
PropertyInfoRoot
.
_nameDataAnnotationsProperty
.FriendlyName);
44
}
45
46
[TestMethod]
47
public
void
TestNameComponentModel
()
48
{
49
Assert.AreEqual(
"Name: ComponentModel"
,
PropertyInfoRoot
.
_nameComponentModelProperty
.FriendlyName);
50
}
51
52
[TestMethod]
53
public
void
TestNameFriendlyName
()
54
{
55
Assert.AreEqual(
"Name: Friendly Name"
,
PropertyInfoRoot
.
_nameFriendlyNameProperty
.FriendlyName);
56
}
57
58
[TestMethod]
59
public
void
TestDefaultValue
()
60
{
61
IDataPortal<PropertyInfoRoot>
dataPortal = _testDIContext.CreateDataPortal<
PropertyInfoRoot
>();
62
63
Assert.AreEqual(
"x"
,
PropertyInfoRoot
.
NameDefaultValueProperty
.DefaultValue);
64
Assert.AreEqual(
"x"
,
PropertyInfoRoot
.
NewPropertyInfoRoot
(dataPortal).
NameDefaultValue
);
65
}
66
67
[TestMethod]
68
public
void
TestStringNullDefaultValue
()
69
{
70
IDataPortal<PropertyInfoRoot>
dataPortal = _testDIContext.CreateDataPortal<
PropertyInfoRoot
>();
71
72
Assert.AreEqual(
null
,
PropertyInfoRoot
.
StringNullDefaultValueProperty
.DefaultValue);
73
Assert.AreEqual(
null
,
PropertyInfoRoot
.
NewPropertyInfoRoot
(dataPortal).
StringNullDefaultValue
);
74
}
75
}
76
}
Csla.Test.PropertyInfo.PropertyInfoRoot
Definition:
PropertyInfoRoot.cs:16
Csla.Test.PropertyInfo.PropertyInfoRoot._nameComponentModelProperty
static readonly PropertyInfo< System.String > _nameComponentModelProperty
Definition:
PropertyInfoRoot.cs:55
Csla.Test.PropertyInfo.PropertyInfoRoot._nameProperty
static readonly PropertyInfo< System.String > _nameProperty
Note: We exposed the PropertyInfo's so we can test it...
Definition:
PropertyInfoRoot.cs:40
Csla.Test.PropertyInfo.PropertyInfoRoot.StringNullDefaultValueProperty
static readonly PropertyInfo< string > StringNullDefaultValueProperty
Definition:
PropertyInfoRoot.cs:77
Csla.Test.PropertyInfo.PropertyInfoRoot.StringNullDefaultValue
string StringNullDefaultValue
Definition:
PropertyInfoRoot.cs:79
Csla.Test.PropertyInfo.PropertyInfoRoot.NameDefaultValueProperty
static readonly PropertyInfo< string > NameDefaultValueProperty
Definition:
PropertyInfoRoot.cs:70
Csla.Test.PropertyInfo.PropertyInfoRoot._nameFriendlyNameProperty
static readonly PropertyInfo< System.String > _nameFriendlyNameProperty
Definition:
PropertyInfoRoot.cs:63
Csla.Test.PropertyInfo.PropertyInfoRoot._nameDataAnnotationsProperty
static readonly PropertyInfo< System.String > _nameDataAnnotationsProperty
Definition:
PropertyInfoRoot.cs:47
Csla.Test.PropertyInfo.PropertyInfoRoot.NewPropertyInfoRoot
static PropertyInfoRoot NewPropertyInfoRoot(IDataPortal< PropertyInfoRoot > dataPortal)
Definition:
PropertyInfoRoot.cs:19
Csla.Test.PropertyInfo.PropertyInfoRoot.NameDefaultValue
string NameDefaultValue
Definition:
PropertyInfoRoot.cs:72
Csla.Test.PropertyInfo.PropertyInfoTests
Definition:
PropertyInfoTests.cs:25
Csla.Test.PropertyInfo.PropertyInfoTests.TestName
void TestName()
Definition:
PropertyInfoTests.cs:35
Csla.Test.PropertyInfo.PropertyInfoTests.TestNameComponentModel
void TestNameComponentModel()
Definition:
PropertyInfoTests.cs:47
Csla.Test.PropertyInfo.PropertyInfoTests.TestNameFriendlyName
void TestNameFriendlyName()
Definition:
PropertyInfoTests.cs:53
Csla.Test.PropertyInfo.PropertyInfoTests.TestDefaultValue
void TestDefaultValue()
Definition:
PropertyInfoTests.cs:59
Csla.Test.PropertyInfo.PropertyInfoTests.TestStringNullDefaultValue
void TestStringNullDefaultValue()
Definition:
PropertyInfoTests.cs:68
Csla.Test.PropertyInfo.PropertyInfoTests.ClassInitialize
static void ClassInitialize(TestContext context)
Definition:
PropertyInfoTests.cs:29
Csla.Test.PropertyInfo.PropertyInfoTests.TestNameDataAnnotations
void TestNameDataAnnotations()
Definition:
PropertyInfoTests.cs:41
Csla.TestHelpers.TestDIContext
Type to carry context information for DI in unit tests
Definition:
TestDIContext.cs:19
Csla.IDataPortal
Interface defining the members of the data portal type.
Definition:
IDataPortalT.cs:17
Csla.Test.PropertyInfo
Definition:
PropertyInfoRoot.cs:13
Csla.TestHelpers
Definition:
ApplicationContextFactory.cs:14
Csla
Definition:
BusinessRuleCases.cs:5
Microsoft
Definition:
ServiceCollectionExtensions.cs:17
Generated by
1.9.2