BudgetAnalyser.Engine.UnitTest.Statement.BankImportUtilitiesTest.FetchDecimalWithNegativeOutOfRangeIndexShouldThrow C# (CSharp) Méthode

FetchDecimalWithNegativeOutOfRangeIndexShouldThrow() private méthode

private FetchDecimalWithNegativeOutOfRangeIndexShouldThrow ( ) : void
Résultat void
        public void FetchDecimalWithNegativeOutOfRangeIndexShouldThrow()
        {
            BankImportUtilities subject = CreateSubject();
            string[] testArray = CreateTestArray();

            subject.FetchDecimal(testArray, -12);

            Assert.Fail();
        }