mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
fix ctor for stripe payment service test
This commit is contained in:
parent
a2460f86ec
commit
0bc034f620
@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using Bit.Core.Repositories;
|
using Bit.Core.Repositories;
|
||||||
using Bit.Core.Services;
|
using Bit.Core.Services;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
@ -12,18 +12,24 @@ namespace Bit.Core.Test.Services
|
|||||||
private readonly StripePaymentService _sut;
|
private readonly StripePaymentService _sut;
|
||||||
|
|
||||||
private readonly ITransactionRepository _transactionRepository;
|
private readonly ITransactionRepository _transactionRepository;
|
||||||
|
private readonly IUserRepository _userRepository;
|
||||||
|
private readonly IAppleIapService _appleIapService;
|
||||||
private readonly GlobalSettings _globalSettings;
|
private readonly GlobalSettings _globalSettings;
|
||||||
private readonly ILogger<StripePaymentService> _logger;
|
private readonly ILogger<StripePaymentService> _logger;
|
||||||
|
|
||||||
public StripePaymentServiceTests()
|
public StripePaymentServiceTests()
|
||||||
{
|
{
|
||||||
_transactionRepository = Substitute.For<ITransactionRepository>();
|
_transactionRepository = Substitute.For<ITransactionRepository>();
|
||||||
|
_userRepository = Substitute.For<IUserRepository>();
|
||||||
|
_appleIapService = Substitute.For<IAppleIapService>();
|
||||||
_globalSettings = new GlobalSettings();
|
_globalSettings = new GlobalSettings();
|
||||||
_logger = Substitute.For<ILogger<StripePaymentService>>();
|
_logger = Substitute.For<ILogger<StripePaymentService>>();
|
||||||
|
|
||||||
_sut = new StripePaymentService(
|
_sut = new StripePaymentService(
|
||||||
_transactionRepository,
|
_transactionRepository,
|
||||||
|
_userRepository,
|
||||||
_globalSettings,
|
_globalSettings,
|
||||||
|
_appleIapService,
|
||||||
_logger
|
_logger
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user