public void CellsPageBreaksGetHorizontalPageBreakTest() { string name = "Book1.xlsx"; string sheetName = "SHEET1"; int? index = 0; string folder = null; new Config().UpdateDataFile(folder, name); var response = instance.CellsPageBreaksGetHorizontalPageBreak(name, sheetName, index, folder); Console.WriteLine(response); }
public void CellsPageBreaksGetHorizontalPageBreakTest() { // TODO uncomment below to test the method and replace null with proper value string name = BOOK1; string sheetName = SHEET1; int? index = 0; string folder = TEMPFOLDER; UpdateDataFile(folder, name); var response = instance.CellsPageBreaksGetHorizontalPageBreak(name, sheetName, index, folder); Assert.IsInstanceOf <HorizontalPageBreakResponse>(response, "response is HorizontalPageBreakResponse"); Assert.AreEqual(response.Code, 200); }