* Added IntegrationTest Attribute and tagged the ODETestClass

This commit is contained in:
lbsa71
2009-05-27 12:36:58 +00:00
parent 892406248a
commit 17f0a4be53
3 changed files with 20 additions and 1 deletions

View File

@@ -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")
{
}
}
}