1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-26 09:49:00 +00:00
Radarr/NzbDrone.Test.Common/MockerExtensions.cs

15 lines
412 B
C#
Raw Normal View History

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