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
TestCriteria.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="TestCriteria.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//-----------------------------------------------------------------------
8using System;
9using System.Collections.Generic;
10using System.Linq;
11using System.Text;
12using Csla;
14
15using UnitDriven;
16
17#if NUNIT
18using NUnit.Framework;
19using TestClass = NUnit.Framework.TestFixtureAttribute;
20using TestInitialize = NUnit.Framework.SetUpAttribute;
21using TestCleanup = NUnit.Framework.TearDownAttribute;
22using TestMethod = NUnit.Framework.TestAttribute;
23using TestSetup = NUnit.Framework.SetUpAttribute;
24#elif MSTEST
25using Microsoft.VisualStudio.TestTools.UnitTesting;
26#endif
27
29{
30 [TestClass]
31 public class TestCriteria : TestBase
32 {
33 [TestMethod]
34 public void CustomCriteria()
35 {
36 var context = GetContext();
37
38 var obj = new CustomCriteria();
39 context.Assert.IsNotNull(obj);
40 obj.Id = 123;
41 context.Assert.AreEqual(123, obj.Id);
42
43 context.Assert.Success();
44 context.Complete();
45 }
46
47 [TestMethod]
48 public void SerializeCriteria()
49 {
50 var context = GetContext();
51
52 var obj = new CustomCriteria();
53 context.Assert.IsNotNull(obj);
54 obj.Id = 123;
55 context.Assert.AreEqual(123, obj.Id);
56
58 context.Assert.AreEqual(123, obj.Id);
59
60 context.Assert.Success();
61 context.Complete();
62 }
63 }
64
66 public class CustomCriteria : CriteriaBase<CustomCriteria>
67 {
68 public static PropertyInfo<int> IdProperty = RegisterProperty<int>(c => c.Id);
69 public int Id
70 {
71 get { return ReadProperty(IdProperty); }
72 set { LoadProperty(IdProperty, value); }
73 }
74 }
75}
This class provides an implementation of a deep clone of a complete object graph.
Definition: ObjectCloner.cs:20
object Clone(object obj)
Clones an object.
Definition: ObjectCloner.cs:52
Base type from which Criteria classes can be derived in a business class.
Definition: CriteriaBase.cs:25
Maintains metadata about a property.
UnitTestContext GetContext()
Definition: TestBase.cs:12
static PropertyInfo< int > IdProperty
Definition: TestCriteria.cs:68
@ Serializable
Prevents updating or inserting until the transaction is complete.