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