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