aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/LongRunningAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Tests/Common/LongRunningAttribute.cs')
-rw-r--r--OpenSim/Tests/Common/LongRunningAttribute.cs44
1 files changed, 22 insertions, 22 deletions
diff --git a/OpenSim/Tests/Common/LongRunningAttribute.cs b/OpenSim/Tests/Common/LongRunningAttribute.cs
index b1dabfc..9042a73 100644
--- a/OpenSim/Tests/Common/LongRunningAttribute.cs
+++ b/OpenSim/Tests/Common/LongRunningAttribute.cs
@@ -1,22 +1,22 @@
1using System; 1using System;
2using System.Collections.Generic; 2using System.Collections.Generic;
3using System.Text; 3using System.Text;
4using NUnit.Framework; 4using NUnit.Framework;
5 5
6namespace OpenSim.Tests.Common 6namespace OpenSim.Tests.Common
7{ 7{
8 [AttributeUsage(AttributeTargets.All, 8 [AttributeUsage(AttributeTargets.All,
9 AllowMultiple = false, 9 AllowMultiple = false,
10 Inherited = true)] 10 Inherited = true)]
11 public class LongRunningAttribute : CategoryAttribute 11 public class LongRunningAttribute : CategoryAttribute
12 { 12 {
13 public LongRunningAttribute() : this("Long Running Test") 13 public LongRunningAttribute() : this("Long Running Test")
14 { 14 {
15 15
16 } 16 }
17 17
18 protected LongRunningAttribute(string category) : base(category) 18 protected LongRunningAttribute(string category) : base(category)
19 { 19 {
20 } 20 }
21 } 21 }
22} 22}