BudgetAnalyser.Engine.UnitTest.Ledger.CreditLedgerTransactionTest.WithAmountMinus50ShouldCreateADebitOf50 C# (CSharp) Method

WithAmountMinus50ShouldCreateADebitOf50() private method

private WithAmountMinus50ShouldCreateADebitOf50 ( ) : void
return void
        public void WithAmountMinus50ShouldCreateADebitOf50()
        {
            var subject = new CreditLedgerTransaction();

            LedgerTransaction result = subject.WithAmount(-50);

            Assert.AreEqual(-50M, result.Amount);
        }
    }