Files
opensim/OpenSim/Tests/Common/IntegrationTestAttribute.cs

18 lines
404 B
C#

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