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
LegacyTest.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="LegacyTest.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.Text;
11using Csla;
12using Csla.TestHelpers;
13
14#if !NUNIT
15using Microsoft.VisualStudio.TestTools.UnitTesting;
16#else
17using NUnit.Framework;
18using TestClass = NUnit.Framework.TestFixtureAttribute;
19using TestInitialize = NUnit.Framework.SetUpAttribute;
20using TestCleanup = NUnit.Framework.TearDownAttribute;
21using TestMethod = NUnit.Framework.TestAttribute;
22#endif
23
25{
26 [TestClass]
27 public class LegacyTest
28 {
29 private static TestDIContext _testDIContext;
30
32 public static void ClassInitialize(TestContext context)
33 {
34 _testDIContext = TestDIContextFactory.CreateDefaultContext();
35 }
36
37 [TestMethod]
38 public void TestDpCreate()
39 {
40 Legacy test = NewLegacy();
41 Assert.AreEqual("Created", TestResults.GetResult("Legacy"));
42 }
43 [TestMethod]
44 public void TestDpFetch()
45 {
46 Legacy test = GetLegacy(5);
47 Assert.AreEqual("Fetched", TestResults.GetResult("Legacy"));
48 }
49 [TestMethod]
50 public void TestDpInsert()
51 {
52 Legacy test = null;
53 try
54 {
55 test = NewLegacy();
56 }
57 catch { Assert.Inconclusive(); }
58 test.Save();
59 Assert.AreEqual("Inserted", TestResults.GetResult("Legacy"));
60 }
61 [TestMethod]
62 public void TestDpUpdate()
63 {
64 Legacy test = null;
65 try
66 {
67 test = NewLegacy();
68 test = test.Save();
69 test.Id = 5;
70 }
71 catch { Assert.Inconclusive(); }
72 test.Save();
73 Assert.AreEqual("Updated", TestResults.GetResult("Legacy"));
74 }
75 [TestMethod]
76 public void TestDpDelete()
77 {
78 DeleteLegacy(5);
79 Assert.AreEqual("Deleted", TestResults.GetResult("Legacy"));
80 }
81 [TestMethod]
82 public void TestDpDeleteSelf()
83 {
84 Legacy test = null;
85 try
86 {
87 test = NewLegacy();
88 test = test.Save();
89 test.Delete();
90 }
91 catch { Assert.Inconclusive(); }
92 test.Save();
93 Assert.AreEqual("SelfDeleted", TestResults.GetResult("Legacy"));
94 }
95
96 private Legacy NewLegacy()
97 {
98 IDataPortal<Legacy> dataPortal = _testDIContext.CreateDataPortal<Legacy>();
99
100 return dataPortal.Create();
101 }
102
103 private Legacy GetLegacy(int id)
104 {
105 IDataPortal<Legacy> dataPortal = _testDIContext.CreateDataPortal<Legacy>();
106
107 return dataPortal.Fetch(new Legacy.Criteria(id));
108 }
109
110 private void DeleteLegacy(int id)
111 {
112 IDataPortal<Legacy> dataPortal = _testDIContext.CreateDataPortal<Legacy>();
113
114 dataPortal.Delete(new Legacy.Criteria(id));
115 }
116 }
117}
T Save()
Saves the object to the database.
static void ClassInitialize(TestContext context)
Definition: LegacyTest.cs:32
Static dictionary-like class that offers similar functionality to GlobalContext This is used in tests...
Definition: TestResults.cs:21
static string GetResult(string key)
Get a result of an operation from the underlying results dictionary
Definition: TestResults.cs:49
Type to carry context information for DI in unit tests
Interface defining the members of the data portal type.
Definition: IDataPortalT.cs:17
void Delete(params object[] criteria)
Called by a Shared (static in C#) method in the business class to cause immediate deletion of a speci...
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...