You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
800 B
35 lines
800 B
using System;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Core.Model.Notification;
|
|
using NzbDrone.Test.Common;
|
|
|
|
namespace NzbDrone.Core.Test.Framework
|
|
{
|
|
public abstract class CoreTest : TestBase
|
|
{
|
|
protected static ProgressNotification MockNotification
|
|
{
|
|
get
|
|
{
|
|
return new ProgressNotification("Mock notification");
|
|
}
|
|
}
|
|
|
|
protected static void ThrowException()
|
|
{
|
|
throw new ApplicationException("This is a message for test exception");
|
|
}
|
|
}
|
|
|
|
public abstract class CoreTest<TSubject> : CoreTest
|
|
{
|
|
[SetUp]
|
|
public void CoreTestSetup()
|
|
{
|
|
Subject = Mocker.Resolve<TSubject>();
|
|
}
|
|
|
|
protected TSubject Subject { get; set; }
|
|
}
|
|
}
|