1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Test.Common/Categories/IntegrationTestAttribute.cs
2013-04-29 17:04:14 -07:00

13 lines
247 B
C#

using NUnit.Framework;
namespace NzbDrone.Test.Common.Categories
{
public class IntegrationTestAttribute : CategoryAttribute
{
public IntegrationTestAttribute()
: base("IntegrationTest")
{
}
}
}