diff options
author | lbsa71 | 2009-05-27 12:36:58 +0000 |
---|---|---|
committer | lbsa71 | 2009-05-27 12:36:58 +0000 |
commit | 17f0a4be5323a50cac3ebdeada3d3b19d7c05e60 (patch) | |
tree | 89163b818cd7f887581d14fd27d8a6d19ea5b2fb /OpenSim/Tests | |
parent | * Added OpenSim.Server.Handlers.Tests project (diff) | |
download | opensim-SC_OLD-17f0a4be5323a50cac3ebdeada3d3b19d7c05e60.zip opensim-SC_OLD-17f0a4be5323a50cac3ebdeada3d3b19d7c05e60.tar.gz opensim-SC_OLD-17f0a4be5323a50cac3ebdeada3d3b19d7c05e60.tar.bz2 opensim-SC_OLD-17f0a4be5323a50cac3ebdeada3d3b19d7c05e60.tar.xz |
* Added IntegrationTest Attribute and tagged the ODETestClass
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r-- | OpenSim/Tests/Common/IntegrationTestAttribute.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/IntegrationTestAttribute.cs b/OpenSim/Tests/Common/IntegrationTestAttribute.cs new file mode 100644 index 0000000..c721710 --- /dev/null +++ b/OpenSim/Tests/Common/IntegrationTestAttribute.cs | |||
@@ -0,0 +1,17 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenSim.Tests.Common | ||
6 | { | ||
7 | [AttributeUsage(AttributeTargets.All, | ||
8 | AllowMultiple = false, | ||
9 | Inherited = true)] | ||
10 | public class IntegrationTestAttribute : LongRunningAttribute | ||
11 | { | ||
12 | public IntegrationTestAttribute() | ||
13 | : base("Integration") | ||
14 | { | ||
15 | } | ||
16 | } | ||
17 | } | ||