1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/NzbDrone.Test.Common/Categories/IntegrationTestAttribute.cs

13 lines
247 B
C#
Raw Normal View History

2013-04-15 17:08:06 -07:00
using NUnit.Framework;
2013-04-29 17:04:14 -07:00
namespace NzbDrone.Test.Common.Categories
2013-04-15 17:08:06 -07:00
{
public class IntegrationTestAttribute : CategoryAttribute
{
public IntegrationTestAttribute()
2013-04-29 17:04:14 -07:00
: base("IntegrationTest")
2013-04-15 17:08:06 -07:00
{
}
}
}