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.
TestBase.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace UnitDriven
8{
9 public class TestBase
10 {
11
13 {
14 return new UnitTestContext();
15 }
16
17 }
18}
UnitTestContext GetContext()
Definition: TestBase.cs:12