public void RestartAtEndSearch()
        {
            var excelWrapper = new EDRExcelWrapper(kennliste_path);

            Assert.IsNotNull(excelWrapper.GetRow(100));
            Assert.IsNotNull(excelWrapper.GetRow(99));
        }
        public void RightColumn3()
        {
            var excelWrapper = new EDRExcelWrapper(kennliste_path);

            string[] obj = excelWrapper.GetRow(2);
            Assert.AreEqual(obj[2].Trim(), "LP FY 20");
            Assert.AreEqual(obj[7].Trim(), "Pump ID");
        }
        public void RightColumnCount()
        {
            var excelWrapper = new EDRExcelWrapper(kennliste_path);

            for (int cnt = 50; cnt < 100; cnt++)
            {
                var res = excelWrapper.GetRow(cnt);
                Assert.IsTrue(51 <= res.Length, "there are only " + res.Length + " columns in row " + cnt);
            }
        }