mirror of
https://github.com/opensim/opensim.git
synced 2026-05-20 07:05:46 +08:00
17 lines
395 B
C#
17 lines
395 B
C#
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 DatabaseTestAttribute : LongRunningAttribute
|
|
{
|
|
public DatabaseTestAttribute() : base("Database")
|
|
{
|
|
}
|
|
}
|
|
} |