BudgetAnalyser.Engine.UnitTest.Services.TransactionManagerServiceTest.RemoveTransaction_ShouldThrow_GivenNullTransaction C# (CSharp) Méthode

RemoveTransaction_ShouldThrow_GivenNullTransaction() private méthode

private RemoveTransaction_ShouldThrow_GivenNullTransaction ( ) : void
Résultat void
        public void RemoveTransaction_ShouldThrow_GivenNullTransaction()
        {
            this.subject.RemoveTransaction(null);

            Assert.Fail();
        }
TransactionManagerServiceTest