mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 08:06:27 +08:00
* Added custom DatabaseTestAttribute to help separating unit tests from component tests.
This commit is contained in:
17
OpenSim/Data/Tests/DatabaseTestAttribute.cs
Normal file
17
OpenSim/Data/Tests/DatabaseTestAttribute.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace OpenSim.Data.Tests
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.All,
|
||||
AllowMultiple=false,
|
||||
Inherited=true)]
|
||||
public class DatabaseTestAttribute : CategoryAttribute
|
||||
{
|
||||
public DatabaseTestAttribute() : base("Database")
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user