BudgetAnalyser.Engine.UnitTest.Services.TransactionManagerServiceTest.LoadStatementModelAsync_ShouldCallStatementRepo_GivenValidStorageKey C# (CSharp) Method

LoadStatementModelAsync_ShouldCallStatementRepo_GivenValidStorageKey() private method

private LoadStatementModelAsync_ShouldCallStatementRepo_GivenValidStorageKey ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task
        public async Task LoadStatementModelAsync_ShouldCallStatementRepo_GivenValidStorageKey()
        {
            await this.subject.LoadAsync(this.testAppDb);
            this.mockStatementRepo.Verify();
        }
TransactionManagerServiceTest