mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-17 21:26:13 -04:00
13 lines
237 B
C#
13 lines
237 B
C#
using NUnit.Framework;
|
|
|
|
namespace NzbDrone.Test.Common
|
|
{
|
|
public class IntegrationTestAttribute : CategoryAttribute
|
|
{
|
|
public IntegrationTestAttribute()
|
|
: base("Integration Test")
|
|
{
|
|
|
|
}
|
|
}
|
|
} |