Skip to content

Commit 7bc1e6f

Browse files
committed
Updated sources
1 parent d3a2a49 commit 7bc1e6f

229 files changed

Lines changed: 262 additions & 256 deletions

File tree

Some content is hidden

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

src/GroupDocs.Conversion.Cloud.Sdk.Test/Api/AuthApiTests.cs

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

src/GroupDocs.Conversion.Cloud.Sdk.Test/Api/BaseApiTest.cs

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

src/GroupDocs.Conversion.Cloud.Sdk.Test/Api/ConvertApiTests.cs

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

src/GroupDocs.Conversion.Cloud.Sdk.Test/Api/FileApiTests.cs

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

src/GroupDocs.Conversion.Cloud.Sdk.Test/Api/FolderApiTests.cs

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

src/GroupDocs.Conversion.Cloud.Sdk.Test/Api/InfoApiTests.cs

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

src/GroupDocs.Conversion.Cloud.Sdk.Test/Api/Internal/TestFile.cs

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

src/GroupDocs.Conversion.Cloud.Sdk.Test/Api/Internal/TestFiles.cs

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

src/GroupDocs.Conversion.Cloud.Sdk.Test/Api/StorageApiTests.cs

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

src/GroupDocs.Conversion.Cloud.Sdk.Test/Api/ThirdPartyStorageTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// --------------------------------------------------------------------------------------------------------------------
22
// <copyright company="Aspose Pty Ltd">
3-
// Copyright (c) 2003-2024 Aspose Pty Ltd
3+
// Copyright (c) Aspose Pty Ltd
44
// </copyright>
55
// <summary>
66
// Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -79,10 +79,10 @@ public void TestConversionAtThirdPartyStorage()
7979
var existsRequest = new ObjectExistsRequest { path = testFile.FullName, storageName = storageName };
8080
var uploadRequest = new UploadFileRequest(testFile.FullName, GetTestFileStream(testFile), storageName);
8181

82-
FileApi.DeleteFile(deleteRequest);
8382
var response = StorageApi.ObjectExists(existsRequest);
84-
Assert.IsFalse(response.Exists);
85-
FileApi.UploadFile(uploadRequest);
83+
if (!(response.Exists ?? false))
84+
FileApi.UploadFile(uploadRequest);
85+
8686
response = StorageApi.ObjectExists(existsRequest);
8787
Assert.IsTrue(response.Exists);
8888

0 commit comments

Comments
 (0)