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

Arrange() private method

private Arrange ( ) : void
return void
        private void Arrange()
        {
            this.mockStatementRepo
                .Setup(m => m.LoadAsync(It.IsAny<string>(), It.IsAny<bool>()))
                .Returns(Task.FromResult(this.testData));
            this.subject = CreateSubject();
            this.subject.LoadAsync(this.testAppDb).Wait();
        }
TransactionManagerServiceTest