1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/NzbDrone.Test.Common/MockerExtensions.cs

15 lines
412 B
C#
Raw Normal View History

2013-07-19 05:47:55 +02:00
using NzbDrone.Test.Common.AutoMoq;
2013-02-23 20:38:25 +01: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;
}
}
}