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

FetchDateWithOutOfRangeIndexShouldThrow() private method

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

            subject.FetchDate(testArray, 12);

            Assert.Fail();
        }