1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-06 06:41:40 +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")
{
}
}
}