From 17f0a4be5323a50cac3ebdeada3d3b19d7c05e60 Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Wed, 27 May 2009 12:36:58 +0000 Subject: * Added IntegrationTest Attribute and tagged the ODETestClass --- OpenSim/Tests/Common/IntegrationTestAttribute.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 OpenSim/Tests/Common/IntegrationTestAttribute.cs (limited to 'OpenSim/Tests') 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 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace OpenSim.Tests.Common +{ + [AttributeUsage(AttributeTargets.All, + AllowMultiple = false, + Inherited = true)] + public class IntegrationTestAttribute : LongRunningAttribute + { + public IntegrationTestAttribute() + : base("Integration") + { + } + } +} -- cgit v1.1