mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
f77a2feeef
* Stylecop Rules and Fixes
13 lines
237 B
C#
13 lines
237 B
C#
using NUnit.Framework;
|
|
|
|
namespace NzbDrone.Automation.Test
|
|
{
|
|
public class AutomationTestAttribute : CategoryAttribute
|
|
{
|
|
public AutomationTestAttribute()
|
|
: base("AutomationTest")
|
|
{
|
|
}
|
|
}
|
|
}
|