1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core.Test/JobTests/EpisodeSearchJobTest.cs

35 lines
1.0 KiB
C#
Raw Normal View History

using System;
using Moq;
using NUnit.Framework;
2011-12-02 04:33:17 +03:00
using NzbDrone.Core.Jobs;
using NzbDrone.Core.Model.Notification;
2011-12-15 07:15:53 +03:00
using NzbDrone.Core.Test.Framework;
using NzbDrone.Test.Common.AutoMoq;
namespace NzbDrone.Core.Test.JobTests
{
[TestFixture]
2013-02-02 23:54:03 +03:00
public class EpisodeSearchJobTest:SqlCeTest
{
[TestCase(0)]
[TestCase(-1)]
[TestCase(-100)]
2012-09-11 09:35:25 +03:00
[ExpectedException(typeof(ArgumentException))]
public void start_target_id_less_than_0_throws_exception(int target)
{
2011-12-15 07:15:53 +03:00
WithStrictMocker();
2012-09-11 09:35:25 +03:00
Mocker.Resolve<EpisodeSearchJob>().Start(new ProgressNotification("Test"), new { EpisodeId = target });
}
[TestCase(-1)]
[TestCase(-100)]
2012-09-11 09:35:25 +03:00
[ExpectedException(typeof(ArgumentException))]
public void start_secondary_target_id_less_than_0_throws_exception(int target)
{
2011-12-15 07:15:53 +03:00
WithStrictMocker();
2012-09-11 09:35:25 +03:00
Mocker.Resolve<SeasonSearchJob>().Start(new ProgressNotification("Test"), new { SeriesId = 1, SeasonNumber = target });
}
}
}