mirror of
https://github.com/opensim/opensim.git
synced 2026-08-13 05:05:43 +08:00
* Added IntegrationTest Attribute and tagged the ODETestClass
This commit is contained in:
17
OpenSim/Tests/Common/IntegrationTestAttribute.cs
Normal file
17
OpenSim/Tests/Common/IntegrationTestAttribute.cs
Normal 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")
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user