File tree Expand file tree Collapse file tree
TransactionProcessor.BusinessLogic.Tests/Services Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ namespace TransactionProcessor.BusinessLogic.Tests.Services
1616 using Shared . DomainDrivenDesign . EventStore ;
1717 using Shared . EventStore . EventStore ;
1818 using Shared . General ;
19+ using Shared . Logger ;
1920 using Shouldly ;
2021 using Testing ;
2122 using TransactionAggregate ;
@@ -29,6 +30,8 @@ public async Task TransactionDomainService_ProcessLogonTransaction_TransactionIs
2930 var configurationRoot = new ConfigurationBuilder ( ) . AddInMemoryCollection ( TestData . DefaultAppSettings ) . Build ( ) ;
3031 ConfigurationReader . Initialise ( configurationRoot ) ;
3132
33+ Logger . Initialise ( NullLogger . Instance ) ;
34+
3235 Mock < IAggregateRepositoryManager > aggregateRepositoryManager = new Mock < IAggregateRepositoryManager > ( ) ;
3336 Mock < IAggregateRepository < TransactionAggregate > > transactionAggregateRepository = new Mock < IAggregateRepository < TransactionAggregate > > ( ) ;
3437
You can’t perform that action at this time.
0 commit comments