BudgetAnalyser.Engine.UnitTest.Ledger.LedgerBook_ReconcileTest.AddLedger_ShouldBeIncludedInNextReconcile_GivenTestData1 C# (CSharp) 메소드

AddLedger_ShouldBeIncludedInNextReconcile_GivenTestData1() 개인적인 메소드

        public void AddLedger_ShouldBeIncludedInNextReconcile_GivenTestData1()
        {
            this.subject.AddLedger(LedgerBookTestData.RatesLedger);
            ReconciliationResult result = Act();

            Assert.IsTrue(result.Reconciliation.Entries.Any(e => e.LedgerBucket == LedgerBookTestData.RatesLedger));
        }
LedgerBook_ReconcileTest