1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-19 10:54:05 +02:00
Sonarr/NzbDrone.Test.Common/MockerExtensions.cs

15 lines
412 B
C#
Raw Normal View History

2013-07-18 20:47:55 -07:00
using NzbDrone.Test.Common.AutoMoq;
2013-02-23 11:38:25 -08:00
namespace NzbDrone.Test.Common
{
public static class MockerExtensions
{
public static TInterface Resolve<TInterface, TService>(this AutoMoqer mocker)
where TService : TInterface
{
var service = mocker.Resolve<TService>();
mocker.SetConstant<TInterface>(service);
return service;
}
}
}