mirror of
https://github.com/Radarr/Radarr
synced 2026-01-30 19:32:22 +01:00
12 lines
237 B
C#
12 lines
237 B
C#
using NUnit.Framework;
|
|
|
|
namespace NzbDrone.Automation.Test
|
|
{
|
|
public class AutomationTestAttribute : CategoryAttribute
|
|
{
|
|
public AutomationTestAttribute()
|
|
: base("AutomationTest")
|
|
{
|
|
}
|
|
}
|
|
}
|