public void CellsWorksheetsPostAutofitWorksheetRowTest() { // TODO uncomment below to test the method and replace null with proper value string name = BOOK1; string sheetName = SHEET1; int? rowIndex = 1; int? firstColumn = 1; int? lastColumn = 10; AutoFitterOptions autoFitterOptions = new AutoFitterOptions(); autoFitterOptions.AutoFitMergedCells = true; string folder = TEMPFOLDER; UpdateDataFile(folder, name); var response = instance.CellsWorksheetsPostAutofitWorksheetRow(name, sheetName, rowIndex, firstColumn, lastColumn, autoFitterOptions, folder); Assert.IsInstanceOf <SaaSposeResponse>(response, "response is SaaSposeResponse"); Assert.AreEqual(response.Code, 200); }