Skip to content

Commit 4f6fdf9

Browse files
committed
Release Aspose.Cells Cloud SDK 21.9
1 parent c98e75f commit 4f6fdf9

13 files changed

+425
-408
lines changed

Aspose.Cells.Cloud.SDK.Test/Api/CellsChartsApiTests.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public void CellsChartsDeleteWorksheetDeleteChartTest()
115115
string folder = TEMPFOLDER;
116116
UpdateDataFile(instance,folder, name);
117117
var response = instance.CellsChartsDeleteWorksheetDeleteChart(name, sheetName, chartIndex, folder);
118-
Assert.IsInstanceOf<ChartsResponse>(response, "response is ChartsResponse");
118+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is ChartsResponse");
119119
Assert.AreEqual(response.Code, 200);
120120
}
121121

@@ -225,7 +225,7 @@ public void CellsChartsPostWorksheetChartLegendTest()
225225
string folder = TEMPFOLDER;
226226
UpdateDataFile(instance,folder, name);
227227
var response = instance.CellsChartsPostWorksheetChartLegend(name, sheetName, chartIndex, legend, folder);
228-
Assert.IsInstanceOf<LegendResponse>(response, "response is LegendResponse");
228+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is LegendResponse");
229229
Assert.AreEqual(response.Code, 200);
230230
}
231231

@@ -244,7 +244,7 @@ public void CellsChartsPostWorksheetChartTitleTest()
244244
string folder = TEMPFOLDER;
245245
UpdateDataFile(instance,folder, name);
246246
var response = instance.CellsChartsPostWorksheetChartTitle(name, sheetName, chartIndex, title, folder);
247-
Assert.IsInstanceOf<TitleResponse>(response, "response is TitleResponse");
247+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is TitleResponse");
248248
Assert.AreEqual(response.Code, 200);
249249
}
250250

@@ -270,7 +270,7 @@ public void CellsChartsPutWorksheetAddChartTest()
270270
string folder = TEMPFOLDER;
271271
UpdateDataFile(instance,folder, name);
272272
var response = instance.CellsChartsPutWorksheetAddChart(name, sheetName, chartType, upperLeftRow, upperLeftColumn, lowerRightRow, lowerRightColumn, area, isVertical, categoryData, isAutoGetSerialName, title, folder);
273-
Assert.IsInstanceOf<ChartsResponse>(response, "response is ChartsResponse");
273+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is ChartsResponse");
274274
Assert.AreEqual(response.Code, 200);
275275
}
276276

@@ -306,7 +306,7 @@ public void CellsChartsPutWorksheetChartTitleTest()
306306
string folder = TEMPFOLDER;
307307
UpdateDataFile(instance,folder, name);
308308
var response = instance.CellsChartsPutWorksheetChartTitle(name, sheetName, chartIndex, title, folder);
309-
Assert.IsInstanceOf<TitleResponse>(response, "response is TitleResponse");
309+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is TitleResponse");
310310
Assert.AreEqual(response.Code, 200);
311311
}
312312

Aspose.Cells.Cloud.SDK.Test/Api/CellsHypelinksApiTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public void CellsHypelinksPostWorkSheetHyperlinkTest()
135135
string folder = TEMPFOLDER;
136136
UpdateDataFile(instance,folder, name);
137137
var response = instance.CellsHypelinksPostWorksheetHyperlink(name, sheetName, hyperlinkIndex, hyperlink, folder);
138-
Assert.IsInstanceOf<HyperlinkResponse>(response, "response is HyperlinkResponse");
138+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is HyperlinkResponse");
139139
Assert.AreEqual(response.Code, 200);
140140
}
141141

@@ -156,7 +156,7 @@ public void CellsHypelinksPutWorkSheetHyperlinkTest()
156156
string folder = TEMPFOLDER;
157157
UpdateDataFile(instance,folder, name);
158158
var response = instance.CellsHypelinksPutWorksheetHyperlink(name, sheetName, firstRow, firstColumn, totalRows, totalColumns, address, folder);
159-
Assert.IsInstanceOf<HyperlinkResponse>(response, "response is HyperlinkResponse");
159+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is HyperlinkResponse");
160160
Assert.AreEqual(response.Code, 200);
161161
}
162162

Aspose.Cells.Cloud.SDK.Test/Api/CellsListObjectsApiTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ public void CellsListObjectsPutWorksheetListObjectTest()
219219
bool? hasHeaders = null;
220220
UpdateDataFile(instance,folder, name);
221221
var response = instance.CellsListObjectsPutWorksheetListObject(name, sheetName, startRow, startColumn, endRow, endColumn, hasHeaders, null, folder);
222-
Assert.IsInstanceOf<ListObjectResponse>(response, "response is ListObjectResponse");
222+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is ListObjectResponse");
223223
Assert.AreEqual(response.Code, 200);
224224
}
225225

Aspose.Cells.Cloud.SDK.Test/Api/CellsOleObjectsApiTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public void CellsOleObjectsPutWorksheetOleObjectTest()
169169
UpdateDataFile(instance, oleFile);
170170
UpdateDataFile(instance, imageFile);
171171
var response = instance.CellsOleObjectsPutWorksheetOleObject(name, sheetName, oleObject, upperLeftRow, upperLeftColumn, height, width, oleFile, imageFile, folder);
172-
Assert.IsInstanceOf<OleObjectResponse>(response, "response is OleObjectResponse");
172+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is OleObjectResponse");
173173
Assert.AreEqual(response.Code, 200);
174174
}
175175

Aspose.Cells.Cloud.SDK.Test/Api/CellsPicturesApiTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public void CellsPicturesPostWorkSheetPictureTest()
135135
string folder = TEMPFOLDER;
136136
UpdateDataFile(instance,folder, name);
137137
var response = instance.CellsPicturesPostWorksheetPicture(name, sheetName, pictureIndex, picture, folder);
138-
Assert.IsInstanceOf<PictureResponse>(response, "response is PictureResponse");
138+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is PictureResponse");
139139
Assert.AreEqual(response.Code, 200);
140140

141141
}
@@ -166,7 +166,7 @@ public void CellsPicturesPutWorksheetAddPictureTest()
166166
UpdateDataFile(instance,folder, name);
167167
UpdateDataFile(instance,folder, picturePath);
168168
var response = instance.CellsPicturesPutWorksheetAddPicture(name, sheetName,picture, upperLeftRow, upperLeftColumn, lowerRightRow, lowerRightColumn, folder + "\\" + picturePath, folder);
169-
Assert.IsInstanceOf<PicturesResponse>(response, "response is PicturesResponse");
169+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is PicturesResponse");
170170
Assert.AreEqual(response.Code, 200);
171171

172172
}

Aspose.Cells.Cloud.SDK.Test/Api/CellsPivotTablesApiTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ public void CellsPivotTablesPutWorksheetPivotTableTest()
441441
bool? useSameSource = true;
442442
UpdateDataFile(instance,folder, name);
443443
var response = instance.CellsPivotTablesPutWorksheetPivotTable(name, sheetName, request, folder, null, sourceData, destCellName, tableName, useSameSource);
444-
Assert.IsInstanceOf<PivotTableResponse>(response, "response is PivotTableResponse");
444+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is PivotTableResponse");
445445
Assert.AreEqual(response.Code, 200);
446446
}
447447

@@ -466,7 +466,7 @@ public void CellsPivotTablesPutWorksheetPivotTableTest_2()
466466
string folder = TEMPFOLDER;
467467
UpdateDataFile(instance,folder, name);
468468
var response = instance.CellsPivotTablesPutWorksheetPivotTable(name, sheetName, request, folder, null, null, null, null, null);
469-
Assert.IsInstanceOf<PivotTableResponse>(response, "response is PivotTableResponse");
469+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is PivotTableResponse");
470470
Assert.AreEqual(response.Code, 200);
471471
}
472472
/// <summary>

Aspose.Cells.Cloud.SDK.Test/Api/CellsPropertiesApiTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public void CellsPropertiesDeleteDocumentPropertiesTest()
6363
string folder = TEMPFOLDER;
6464
UpdateDataFile(instance,folder, name);
6565
var response = instance.CellsPropertiesDeleteDocumentProperties(name, folder);
66-
Assert.IsInstanceOf<CellsDocumentPropertiesResponse>(response, "response is CellsDocumentPropertiesResponse");
66+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is CellsDocumentPropertiesResponse");
6767
Assert.AreEqual(response.Code, 200);
6868
}
6969

@@ -79,7 +79,7 @@ public void CellsPropertiesDeleteDocumentPropertyTest()
7979
string folder = TEMPFOLDER;
8080
UpdateDataFile(instance,folder, name);
8181
var response = instance.CellsPropertiesDeleteDocumentProperty(name, propertyName, folder);
82-
Assert.IsInstanceOf<CellsDocumentPropertiesResponse>(response, "response is CellsDocumentPropertiesResponse");
82+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is CellsDocumentPropertiesResponse");
8383
Assert.AreEqual(response.Code, 200);
8484
}
8585

@@ -130,7 +130,7 @@ public void CellsPropertiesPutDocumentPropertyTest()
130130
string folder = TEMPFOLDER;
131131
UpdateDataFile(instance,folder, name);
132132
var response = instance.CellsPropertiesPutDocumentProperty(name, propertyName, property, folder);
133-
Assert.IsInstanceOf<CellsDocumentPropertyResponse>(response, "response is CellsDocumentPropertyResponse");
133+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is CellsDocumentPropertyResponse");
134134
Assert.AreEqual(response.Code, 200);
135135
}
136136

Aspose.Cells.Cloud.SDK.Test/Api/CellsShapesApiTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public void CellsShapesPutWorksheetShapeTest()
155155
string folder = TEMPFOLDER;
156156
UpdateDataFile(instance,folder, name);
157157
var response = instance.CellsShapesPutWorksheetShape(name, sheetName, shape, drawingType, upperLeftRow, upperLeftColumn, top, left, width, height, folder);
158-
Assert.IsInstanceOf<ShapeResponse>(response, "response is ShapeResponse");
158+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is ShapeResponse");
159159
Assert.AreEqual(response.Code, 200);
160160
}
161161

Aspose.Cells.Cloud.SDK.Test/Api/CellsWorksheetValidationsApiTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public void CellsWorksheetValidationsDeleteWorkSheetValidationTest()
6565
string folder = TEMPFOLDER;
6666
UpdateDataFile(instance,folder, name);
6767
var response = instance.CellsWorksheetValidationsDeleteWorksheetValidation(name, sheetName, validationIndex, folder);
68-
Assert.IsInstanceOf<ValidationResponse>(response, "response is ValidationResponse");
68+
Assert.IsInstanceOf<CellsCloudResponse>(response, "response is ValidationResponse");
6969
Assert.AreEqual(response.Code, 200);
7070
}
7171

0 commit comments

Comments
 (0)