mirror of
https://github.com/opensim/opensim.git
synced 2026-08-13 05:05:43 +08:00
18 lines
404 B
C#
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")
|
|
{
|
|
}
|
|
}
|
|
}
|