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

13 lines
247 B
C#
Raw Normal View History

2013-04-16 03:08:06 +03:00
using NUnit.Framework;
2013-04-30 03:04:14 +03:00
namespace NzbDrone.Test.Common.Categories
2013-04-16 03:08:06 +03:00
{
public class IntegrationTestAttribute : CategoryAttribute
{
public IntegrationTestAttribute()
2013-04-30 03:04:14 +03:00
: base("IntegrationTest")
2013-04-16 03:08:06 +03:00
{
}
}
}