Skip to content

Commit 697548e

Browse files
committed
Release Aspose.Cells Cloud SDK 24.1.1
1 parent 3d65166 commit 697548e

File tree

989 files changed

+3673
-3167
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

989 files changed

+3673
-3167
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// --------------------------------------------------------------------------------------------------------------------
22
// <copyright company="Aspose" file="AutoFilterControllerTests.cs">
3-
// Copyright (c) 2023 Aspose.Cells Cloud
3+
// Copyright (c) 2024 Aspose.Cells Cloud
44
// </copyright>
55
// <summary>
66
// Permission is hereby granted, free of charge, to any person obtaining a copy

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// --------------------------------------------------------------------------------------------------------------------
22
// <copyright company="Aspose" file="BatchControllerTests.cs">
3-
// Copyright (c) 2023 Aspose.Cells Cloud
3+
// Copyright (c) 2024 Aspose.Cells Cloud
44
// </copyright>
55
// <summary>
66
// Permission is hereby granted, free of charge, to any person obtaining a copy

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// --------------------------------------------------------------------------------------------------------------------
22
// <copyright company="Aspose" file="CellsControllerTests.cs">
3-
// Copyright (c) 2023 Aspose.Cells Cloud
3+
// Copyright (c) 2024 Aspose.Cells Cloud
44
// </copyright>
55
// <summary>
66
// Permission is hereby granted, free of charge, to any person obtaining a copy

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// --------------------------------------------------------------------------------------------------------------------
22
// <copyright company="Aspose" file="CellsStatusControllerTests.cs">
3-
// Copyright (c) 2023 Aspose.Cells Cloud
3+
// Copyright (c) 2024 Aspose.Cells Cloud
44
// </copyright>
55
// <summary>
66
// Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -9,10 +9,10 @@
99
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1010
// copies of the Software, and to permit persons to whom the Software is
1111
// furnished to do so, subject to the following conditions:
12-
//
12+
//
1313
// The above copyright notice and this permission notice shall be included in all
1414
// copies or substantial portions of the Software.
15-
//
15+
//
1616
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1717
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1818
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@@ -25,7 +25,7 @@
2525

2626
namespace Aspose.Cells.Cloud.SDK.Tests.Api.Api
2727
{
28-
using Microsoft.VisualStudio.TestTools.UnitTesting;
28+
using Microsoft.VisualStudio.TestTools.UnitTesting;
2929
using Aspose.Cells.Cloud.SDK.Model;
3030
using Aspose.Cells.Cloud.SDK.Request;
3131
using System.Collections.Generic;
@@ -52,7 +52,7 @@ public void TestGetCellsCloudServicesHealthCheck()
5252
var request = new GetCellsCloudServicesHealthCheckRequest(
5353
);
5454
var actual = this.CellsApi.GetCellsCloudServicesHealthCheck(request);
55-
Assert.AreEqual("{\"Status\":\"Cells Cloud(v23.12.0) is working fine!\"}", actual);
55+
Assert.AreEqual("{\"Status\":\"Cells Cloud(v24.1.1) is working fine!\"}", actual);
5656
}
5757

5858
/// <summary>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// --------------------------------------------------------------------------------------------------------------------
22
// <copyright company="Aspose" file="ChartAreaControllerTests.cs">
3-
// Copyright (c) 2023 Aspose.Cells Cloud
3+
// Copyright (c) 2024 Aspose.Cells Cloud
44
// </copyright>
55
// <summary>
66
// Permission is hereby granted, free of charge, to any person obtaining a copy

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

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// --------------------------------------------------------------------------------------------------------------------
22
// <copyright company="Aspose" file="ChartsControllerTests.cs">
3-
// Copyright (c) 2023 Aspose.Cells Cloud
3+
// Copyright (c) 2024 Aspose.Cells Cloud
44
// </copyright>
55
// <summary>
66
// Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -84,18 +84,18 @@ public void TestGetWorksheetChart()
8484
}
8585

8686
/// <summary>
87-
/// Test for PutWorksheetAddChart of ChartsController.
87+
/// Test for PutWorksheetChart of ChartsController.
8888
/// </summary>
8989
[TestCategory(ProductName)]
9090
[TestMethod]
91-
public void TestPutWorksheetAddChart()
91+
public void TestPutWorksheetChart()
9292
{
9393
string localName = "Book1.xlsx";
9494
string remoteName = "Book1.xlsx";
9595

9696
this.UploadFile( localName, remoteFolder + "/" + remoteName, "");
9797

98-
var request = new PutWorksheetAddChartRequest(
98+
var request = new PutWorksheetChartRequest(
9999
name: remoteName,
100100
sheetName: "Sheet4",
101101
chartType: "Pie",
@@ -109,30 +109,30 @@ public void TestPutWorksheetAddChart()
109109
folder: remoteFolder,
110110
storageName: ""
111111
);
112-
var actual = this.CellsApi.PutWorksheetAddChart(request);
112+
var actual = this.CellsApi.PutWorksheetChart(request);
113113
Assert.AreEqual(200, actual.Code);
114114
}
115115

116116
/// <summary>
117-
/// Test for DeleteWorksheetDeleteChart of ChartsController.
117+
/// Test for DeleteWorksheetChart of ChartsController.
118118
/// </summary>
119119
[TestCategory(ProductName)]
120120
[TestMethod]
121-
public void TestDeleteWorksheetDeleteChart()
121+
public void TestDeleteWorksheetChart()
122122
{
123123
string localName = "Book1.xlsx";
124124
string remoteName = "Book1.xlsx";
125125

126126
this.UploadFile( localName, remoteFolder + "/" + remoteName, "");
127127

128-
var request = new DeleteWorksheetDeleteChartRequest(
128+
var request = new DeleteWorksheetChartRequest(
129129
name: remoteName,
130130
sheetName: "Sheet4",
131131
chartIndex: 0,
132132
folder: remoteFolder,
133133
storageName: ""
134134
);
135-
var actual = this.CellsApi.DeleteWorksheetDeleteChart(request);
135+
var actual = this.CellsApi.DeleteWorksheetChart(request);
136136
Assert.AreEqual(200, actual.Code);
137137
}
138138

@@ -263,24 +263,24 @@ public void TestDeleteWorksheetChartLegend()
263263
}
264264

265265
/// <summary>
266-
/// Test for DeleteWorksheetClearCharts of ChartsController.
266+
/// Test for DeleteWorksheetCharts of ChartsController.
267267
/// </summary>
268268
[TestCategory(ProductName)]
269269
[TestMethod]
270-
public void TestDeleteWorksheetClearCharts()
270+
public void TestDeleteWorksheetCharts()
271271
{
272272
string localName = "Book1.xlsx";
273273
string remoteName = "Book1.xlsx";
274274

275275
this.UploadFile( localName, remoteFolder + "/" + remoteName, "");
276276

277-
var request = new DeleteWorksheetClearChartsRequest(
277+
var request = new DeleteWorksheetChartsRequest(
278278
name: remoteName,
279279
sheetName: "Sheet4",
280280
folder: remoteFolder,
281281
storageName: ""
282282
);
283-
var actual = this.CellsApi.DeleteWorksheetClearCharts(request);
283+
var actual = this.CellsApi.DeleteWorksheetCharts(request);
284284
Assert.AreEqual(200, actual.Code);
285285
}
286286

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// --------------------------------------------------------------------------------------------------------------------
22
// <copyright company="Aspose" file="ConditionalFormattingsControllerTests.cs">
3-
// Copyright (c) 2023 Aspose.Cells Cloud
3+
// Copyright (c) 2024 Aspose.Cells Cloud
44
// </copyright>
55
// <summary>
66
// Permission is hereby granted, free of charge, to any person obtaining a copy

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// --------------------------------------------------------------------------------------------------------------------
22
// <copyright company="Aspose" file="FileControllerTests.cs">
3-
// Copyright (c) 2023 Aspose.Cells Cloud
3+
// Copyright (c) 2024 Aspose.Cells Cloud
44
// </copyright>
55
// <summary>
66
// Permission is hereby granted, free of charge, to any person obtaining a copy

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// --------------------------------------------------------------------------------------------------------------------
22
// <copyright company="Aspose" file="FolderControllerTests.cs">
3-
// Copyright (c) 2023 Aspose.Cells Cloud
3+
// Copyright (c) 2024 Aspose.Cells Cloud
44
// </copyright>
55
// <summary>
66
// Permission is hereby granted, free of charge, to any person obtaining a copy

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// --------------------------------------------------------------------------------------------------------------------
22
// <copyright company="Aspose" file="HypelinksControllerTests.cs">
3-
// Copyright (c) 2023 Aspose.Cells Cloud
3+
// Copyright (c) 2024 Aspose.Cells Cloud
44
// </copyright>
55
// <summary>
66
// Permission is hereby granted, free of charge, to any person obtaining a copy

0 commit comments

Comments
 (0)