diff options
author | Jeff Ames | 2009-04-14 10:00:13 +0000 |
---|---|---|
committer | Jeff Ames | 2009-04-14 10:00:13 +0000 |
commit | fa29cf5c5010f7c3e83494786be1b0c11c663e6d (patch) | |
tree | 51d4cc4d2e82d2a53bb1ca23ef10b3dd63060f0d /OpenSim/Tests/Common | |
parent | * Adding some organization of vehicle type stuff in the ODEPlugin. (diff) | |
download | opensim-SC_OLD-fa29cf5c5010f7c3e83494786be1b0c11c663e6d.zip opensim-SC_OLD-fa29cf5c5010f7c3e83494786be1b0c11c663e6d.tar.gz opensim-SC_OLD-fa29cf5c5010f7c3e83494786be1b0c11c663e6d.tar.bz2 opensim-SC_OLD-fa29cf5c5010f7c3e83494786be1b0c11c663e6d.tar.xz |
Update svn properties.
Diffstat (limited to 'OpenSim/Tests/Common')
-rw-r--r-- | OpenSim/Tests/Common/DatabaseTestAttribute.cs | 32 | ||||
-rw-r--r-- | OpenSim/Tests/Common/LongRunningAttribute.cs | 44 |
2 files changed, 38 insertions, 38 deletions
diff --git a/OpenSim/Tests/Common/DatabaseTestAttribute.cs b/OpenSim/Tests/Common/DatabaseTestAttribute.cs index 9d21831..efae887 100644 --- a/OpenSim/Tests/Common/DatabaseTestAttribute.cs +++ b/OpenSim/Tests/Common/DatabaseTestAttribute.cs | |||
@@ -1,17 +1,17 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Text; | 3 | using System.Text; |
4 | using NUnit.Framework; | 4 | using NUnit.Framework; |
5 | 5 | ||
6 | namespace OpenSim.Tests.Common | 6 | namespace 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 DatabaseTestAttribute : LongRunningAttribute | 11 | public class DatabaseTestAttribute : LongRunningAttribute |
12 | { | 12 | { |
13 | public DatabaseTestAttribute() : base("Database") | 13 | public DatabaseTestAttribute() : base("Database") |
14 | { | 14 | { |
15 | } | 15 | } |
16 | } | 16 | } |
17 | } \ No newline at end of file | 17 | } \ No newline at end of file |
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 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Text; | 3 | using System.Text; |
4 | using NUnit.Framework; | 4 | using NUnit.Framework; |
5 | 5 | ||
6 | namespace OpenSim.Tests.Common | 6 | namespace 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 | } |