Esempio n. 1
0
 public void Setup()
 {
     ContextMock = new Mock <IEmbyContentRepository>();
     LoggerMock  = new Mock <ILogger <EmbyAvailabilityRule> >();
     FeatureMock = new Mock <IFeatureService>();
     Rule        = new EmbyAvailabilityRule(ContextMock.Object, LoggerMock.Object, FeatureMock.Object);
 }
Esempio n. 2
0
 public void Setup()
 {
     ContextMock = new Mock <IEmbyContentRepository>();
     Rule        = new EmbyAvailabilityRule(ContextMock.Object);
 }
Esempio n. 3
0
 public void Setup()
 {
     ContextMock  = new Mock <IEmbyContentRepository>();
     SettingsMock = new Mock <ISettingsService <EmbySettings> >();
     Rule         = new EmbyAvailabilityRule(ContextMock.Object, SettingsMock.Object);
 }