blob: 9f89c1a28d55955dcd186c356ea902840909b3ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using IOL.VippsEcommerce.Models;
using Microsoft.Extensions.DependencyInjection;
using Xunit.Sdk;
namespace IOL.VippsEcommerce.Tests
{
public static class Helpers
{
public static IVippsEcommerceService GetVippsEcommerceService(Action<VippsConfiguration> conf) {
var services = new ServiceCollection();
services.AddVippsEcommerceService(conf);
var provider = services.BuildServiceProvider();
var vippsEcommerceService = provider.GetService<IVippsEcommerceService>();
if (vippsEcommerceService == default) {
throw new NullException(nameof(vippsEcommerceService));
}
return vippsEcommerceService;
}
}
}
|