* Added custom DatabaseTestAttribute to help separating unit tests from component tests.

This commit is contained in:
lbsa71
2009-04-09 06:42:15 +00:00
parent 65dcfdf031
commit a707fa7bea
31 changed files with 47 additions and 30 deletions

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