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
PropertGetSetTests.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="PropertGetSetTests.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Test created for Bug Tracker Item 64</summary>
7//-----------------------------------------------------------------------
8using UnitDriven;
9using System.Threading.Tasks;
10
11#if NUNIT
12using NUnit.Framework;
13using TestClass = NUnit.Framework.TestFixtureAttribute;
14using TestInitialize = NUnit.Framework.SetUpAttribute;
15using TestCleanup = NUnit.Framework.TearDownAttribute;
16using TestMethod = NUnit.Framework.TestAttribute;
17using TestSetup = NUnit.Framework.SetUpAttribute;
18#elif MSTEST
19using Microsoft.VisualStudio.TestTools.UnitTesting;
20#endif
21
23{
24 [TestClass]
26 {
27#if DEBUG
35 [TestMethod]
36
37 public async Task ProperyInfoDeclaredInBaseClassShouldLoadInAnotherDomain()
38 {
39 var item = new InheritedLoadPropertySet();
40 item = await item.SaveAsync();
41 Assert.AreEqual(1, item.Id);
42 }
43#endif
44 }
45}