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.
UnitContextTestBase.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="UnitContextTestBase.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#if NUNIT
9using NUnit.Framework;
10using TestClass = NUnit.Framework.TestFixtureAttribute;
11using TestInitialize = NUnit.Framework.SetUpAttribute;
12using TestCleanup = NUnit.Framework.TearDownAttribute;
13using TestMethod = NUnit.Framework.TestAttribute;
14using TestSetup = NUnit.Framework.SetUpAttribute;
15#elif MSTEST
16using Microsoft.VisualStudio.TestTools.UnitTesting;
17#endif
18using UnitDriven;
19
21{
23 {
25
26 [TestInitialize]
27 public void SetUp()
28 {
30 }
31 [TestCleanup]
32 public void TearDown()
33 {
35 }
36 }
37}
UnitTestContext GetContext()
Definition: TestBase.cs:12