Radarr/src/NzbDrone.Automation.Test/AutomationTestAttribute.cs

13 lines
237 B
C#
Raw Normal View History

2013-11-12 03:25:54 +00:00
using NUnit.Framework;
namespace NzbDrone.Automation.Test
{
public class AutomationTestAttribute : CategoryAttribute
{
public AutomationTestAttribute()
: base("AutomationTest")
{
}
}
2019-12-22 21:24:10 +00:00
}