1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-06 11:49:27 +00:00
Radarr/NzbDrone.Test.Common/IntegrationTest.cs

13 lines
237 B
C#
Raw Normal View History

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