aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/DatabaseTestAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Tests/Common/DatabaseTestAttribute.cs')
-rw-r--r--OpenSim/Tests/Common/DatabaseTestAttribute.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/DatabaseTestAttribute.cs b/OpenSim/Tests/Common/DatabaseTestAttribute.cs
new file mode 100644
index 0000000..9d21831
--- /dev/null
+++ b/OpenSim/Tests/Common/DatabaseTestAttribute.cs
@@ -0,0 +1,17 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using NUnit.Framework;
5
6namespace OpenSim.Tests.Common
7{
8 [AttributeUsage(AttributeTargets.All,
9 AllowMultiple=false,
10 Inherited=true)]
11 public class DatabaseTestAttribute : LongRunningAttribute
12 {
13 public DatabaseTestAttribute() : base("Database")
14 {
15 }
16 }
17} \ No newline at end of file