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
LogicalExecutionDataPortalTests.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6using Csla.Server;
7using Microsoft.VisualStudio.TestTools.UnitTesting;
8
10{
11 //[TestClass]
12 //public class LogicalExecutionDataPortalTests
13 //{
14 // [TestMethod]
15 // public void Test_LogicalExecution_Values()
16 // {
17 // TestResults.Reinitialise();
18
19 // Assert.AreEqual(ApplicationContext.LogicalExecutionLocations.Client, ApplicationContext.LogicalExecutionLocation, "Default value of 'ApplicationContext.LogicalExecutionLocation' must be 'LogicalExecutionLocations.Client'");
20
21 // var dataPortal = new Server.DataPortal();
22
23 // dataPortal.Create(typeof(LogicalExecutionTestBusiness), null, new DataPortalContext(null, false), true).Wait();
24 // Assert.AreEqual(ApplicationContext.LogicalExecutionLocations.Server, (ApplicationContext.LogicalExecutionLocations)ApplicationContext.GlobalContext["LogicalExecutionDataPortalTests_Create"], "'ApplicationContext.LogicalExecutionLocation' must be 'LogicalExecutionLocations.Server' DURING 'Create'");
25 // Assert.AreEqual(ApplicationContext.LogicalExecutionLocations.Client, ApplicationContext.LogicalExecutionLocation, "'ApplicationContext.LogicalExecutionLocation' must be 'LogicalExecutionLocations.Client' AFTER 'Create'");
26 // TestResults.Reinitialise();
27
28 // dataPortal.Fetch(typeof(LogicalExecutionTestBusiness), null, new DataPortalContext(null, false), true).Wait();
29 // Assert.AreEqual(ApplicationContext.LogicalExecutionLocations.Server, (ApplicationContext.LogicalExecutionLocations)ApplicationContext.GlobalContext["LogicalExecutionDataPortalTests_Fetch"], "'ApplicationContext.LogicalExecutionLocation' must be 'LogicalExecutionLocations.Server' DURING 'Fetch'");
30 // Assert.AreEqual(ApplicationContext.LogicalExecutionLocations.Client, ApplicationContext.LogicalExecutionLocation, "'ApplicationContext.LogicalExecutionLocation' must be 'LogicalExecutionLocations.Client' AFTER 'Fetch'");
31 // TestResults.Reinitialise();
32
33 // dataPortal.Delete(typeof(LogicalExecutionTestBusiness), null, new DataPortalContext(null, false), true).Wait();
34 // Assert.AreEqual(ApplicationContext.LogicalExecutionLocations.Server, (ApplicationContext.LogicalExecutionLocations)ApplicationContext.GlobalContext["LogicalExecutionDataPortalTests_Delete"], "'ApplicationContext.LogicalExecutionLocation' must be 'LogicalExecutionLocations.Server' DURING 'Delete'");
35 // Assert.AreEqual(ApplicationContext.LogicalExecutionLocations.Client, ApplicationContext.LogicalExecutionLocation, "'ApplicationContext.LogicalExecutionLocation' must be 'LogicalExecutionLocations.Client' AFTER 'Delete'");
36 // TestResults.Reinitialise();
37
38 // dataPortal.Update(new LogicalExecutionTestBusiness(), new DataPortalContext(null, false), true).Wait();
39 // Assert.AreEqual(ApplicationContext.LogicalExecutionLocations.Server, (ApplicationContext.LogicalExecutionLocations)ApplicationContext.GlobalContext["LogicalExecutionDataPortalTests_Update"], "'ApplicationContext.LogicalExecutionLocation' must be 'LogicalExecutionLocations.Server' DURING 'Update'");
40 // Assert.AreEqual(ApplicationContext.LogicalExecutionLocations.Client, ApplicationContext.LogicalExecutionLocation, "'ApplicationContext.LogicalExecutionLocation' must be 'LogicalExecutionLocations.Client' AFTER 'Update'");
41 // }
42
43 // [Serializable]
44 // private class LogicalExecutionTestBusiness : BusinessBase<LogicalExecutionTestBusiness>
45 // {
46 // [Create]
47 // private void Create()
48 // {
49 // //ApplicationContext.GlobalContext["LogicalExecutionDataPortalTests_Create"] = ApplicationContext.LogicalExecutionLocation;
50 // }
51
52 // [Fetch]
53 // private void Fetch()
54 // {
55 // //ApplicationContext.GlobalContext["LogicalExecutionDataPortalTests_Fetch"] = ApplicationContext.LogicalExecutionLocation;
56 // }
57
58 // [Insert]
59 // private void Insert()
60 // {
61 // //ApplicationContext.GlobalContext["LogicalExecutionDataPortalTests_Update"] = ApplicationContext.LogicalExecutionLocation;
62 // }
63
64 // [Delete]
65 // private void Delete()
66 // {
67 // //ApplicationContext.GlobalContext["LogicalExecutionDataPortalTests_Delete"] = ApplicationContext.LogicalExecutionLocation;
68 // }
69 // }
70 //}
71}