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
RuleTests.cs
Go to the documentation of this file.
1
using
System;
2
using
System.Collections.Generic;
3
using
System.Linq;
4
using
System.Reflection;
5
using
System.Text;
6
using
Microsoft
.VisualStudio.TestTools.UnitTesting;
7
using
Csla
.
DataPortalClient
;
8
using
UnitDriven
;
9
using
System.Threading.Tasks;
10
using
Csla
.
TestHelpers
;
11
12
namespace
Csla.Test.ValidationRules
13
{
14
[TestClass]
15
public
class
RuleTests
:
TestBase
16
{
17
private
static
TestDIContext
_testDIContext;
18
19
[
ClassInitialize
]
20
public
static
void
ClassInitialize
(TestContext context)
21
{
22
_testDIContext = TestDIContextFactory.CreateDefaultContext();
23
}
24
25
[TestMethod]
26
public
async Task
CleanupWhenAddBusinessRulesThrowsException
()
27
{
28
IDataPortal<RootThrowsException>
dataPortal = _testDIContext.CreateDataPortal<
RootThrowsException
>();
29
30
RootThrowsException
.
Counter
= 0;
31
32
// AddBusinessRules throw an ArgumentException
33
// In .NET the exception will occur serverside and returned i DatPortalEventArgs
34
try
35
{
36
await dataPortal.
CreateAsync
();
37
}
38
catch
(
DataPortalException
ex)
39
{
40
Assert.IsTrue(ex.InnerException is ArgumentException);
41
}
42
43
// should fail again as type rules should be cleaned up
44
// AddBusinessRules throw an ArgumentException
45
try
46
{
47
await dataPortal.
CreateAsync
();
48
}
49
catch
(
DataPortalException
ex)
50
{
51
Assert.IsTrue(ex.InnerException is ArgumentException);
52
}
53
}
54
}
55
}
Csla.DataPortalException
This exception is returned for any errors occurring during the server-side DataPortal invocation.
Definition:
DataPortalException.cs:21
Csla.Test.ValidationRules.RootThrowsException
Definition:
Fakes/Server/Validation/RootThrowsException.cs:12
Csla.Test.ValidationRules.RootThrowsException.Counter
static int Counter
Definition:
Fakes/Server/Validation/RootThrowsException.cs:15
Csla.Test.ValidationRules.RuleTests
Definition:
RuleTests.cs:16
Csla.Test.ValidationRules.RuleTests.CleanupWhenAddBusinessRulesThrowsException
async Task CleanupWhenAddBusinessRulesThrowsException()
Definition:
RuleTests.cs:26
Csla.Test.ValidationRules.RuleTests.ClassInitialize
static void ClassInitialize(TestContext context)
Definition:
RuleTests.cs:20
Csla.TestHelpers.TestDIContext
Type to carry context information for DI in unit tests
Definition:
TestDIContext.cs:19
UnitDriven.TestBase
Definition:
TestBase.cs:10
Csla.IDataPortal
Interface defining the members of the data portal type.
Definition:
IDataPortalT.cs:17
Csla.IDataPortal.CreateAsync
Task< object > CreateAsync(params object[] criteria)
Starts an asynchronous data portal operation to create a business object.
Csla.DataPortalClient
Definition:
Csla/DataPortalClient/DataPortalFactory.cs:11
Csla.Test.ValidationRules
Definition:
Fakes/Server/Validation/RootThrowsException.cs:9
Csla.TestHelpers
Definition:
ApplicationContextFactory.cs:14
Csla
Definition:
BusinessRuleCases.cs:5
Microsoft
Definition:
ServiceCollectionExtensions.cs:17
UnitDriven
Definition:
Asserter.cs:13
Generated by
1.9.2