BudgetAnalyser.Engine.UnitTest.Ledger.LedgerBook_ReconcileTest.Reconcile_WithStatementShouldHave3PowerTransactions_GivenTestData1 C# (CSharp) Method

Reconcile_WithStatementShouldHave3PowerTransactions_GivenTestData1() private method

        public void Reconcile_WithStatementShouldHave3PowerTransactions_GivenTestData1()
        {
            this.subject.Output();
            ReconciliationResult result = Act();
            this.subject.Output(true);
            Assert.AreEqual(3, result.Reconciliation.Entries.Single(e => e.LedgerBucket.BudgetBucket.Code == TestDataConstants.PowerBucketCode).Transactions.Count());
        }
LedgerBook_ReconcileTest