Radarr/src/NzbDrone.Test.Common/MockerExtensions.cs

16 lines
413 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;
}
}
2019-12-22 21:24:10 +00:00
}