BudgetAnalyser.Engine.UnitTest.Statement.BankImportUtilitiesTest.FetchStringWithNegativeOutOfRangeIndexShouldThrow C# (CSharp) Method

FetchStringWithNegativeOutOfRangeIndexShouldThrow() private method

private FetchStringWithNegativeOutOfRangeIndexShouldThrow ( ) : void
return void
        public void FetchStringWithNegativeOutOfRangeIndexShouldThrow()
        {
            BankImportUtilities subject = CreateSubject();
            string[] testArray = CreateTestArray();

            subject.FetchString(testArray, -12);

            Assert.Fail();
        }