mirror of
https://github.com/Radarr/Radarr
synced 2024-12-28 10:51:48 +00:00
13 lines
237 B
C#
13 lines
237 B
C#
|
using NUnit.Framework;
|
|||
|
|
|||
|
namespace NzbDrone.Test.Common
|
|||
|
{
|
|||
|
public class IntegrationTestAttribute : CategoryAttribute
|
|||
|
{
|
|||
|
public IntegrationTestAttribute()
|
|||
|
: base("Integration Test")
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|