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

FetchStringWithOutOfRangeIndexShouldThrow() private method

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

            subject.FetchString(testArray, 12);

            Assert.Fail();
        }