blob: b1dabfccc5a6c108051e8f78e7ae616436a9d4d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using System.Collections.Generic;
using System.Text;
using NUnit.Framework;
namespace OpenSim.Tests.Common
{
[AttributeUsage(AttributeTargets.All,
AllowMultiple = false,
Inherited = true)]
public class LongRunningAttribute : CategoryAttribute
{
public LongRunningAttribute() : this("Long Running Test")
{
}
protected LongRunningAttribute(string category) : base(category)
{
}
}
}
|