-
Notifications
You must be signed in to change notification settings - Fork 51
fix: resolve trimming warnings in project #903
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
tests/Microsoft.Graph.DotnetCore.Core.Test/Mocks/MockUploadSessionWithoutInterface.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
namespace Microsoft.Graph.DotnetCore.Core.Test.Mocks | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using Microsoft.Kiota.Abstractions.Serialization; | ||
|
||
/// <summary> | ||
/// Concrete implementation of the IUploadSession interface | ||
/// </summary> | ||
internal class MockUploadSessionWithoutUploadSessionInterface : IParsable, IAdditionalDataHolder | ||
{ | ||
/// <summary> | ||
/// Expiration date of the upload session | ||
/// </summary> | ||
public DateTimeOffset? ExpirationDateTime | ||
{ | ||
get; set; | ||
} | ||
|
||
/// <summary> | ||
/// The ranges yet to be uploaded to the server | ||
/// </summary> | ||
public List<string> NextExpectedRanges | ||
{ | ||
get; set; | ||
} | ||
|
||
/// <summary> | ||
/// The URL for upload | ||
/// </summary> | ||
public string UploadUrl | ||
{ | ||
get; set; | ||
} | ||
|
||
/// <summary> | ||
/// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. | ||
/// </summary> | ||
public IDictionary<string, object> AdditionalData { get; set; } = new Dictionary<string, object>(); | ||
|
||
/// <summary> | ||
/// The deserialization information for the current model | ||
/// </summary> | ||
public IDictionary<string, Action<IParseNode>> GetFieldDeserializers() | ||
{ | ||
return new Dictionary<string, Action<IParseNode>>(StringComparer.OrdinalIgnoreCase) | ||
{ | ||
{"expirationDateTime", (n) => { ExpirationDateTime = n.GetDateTimeOffsetValue(); } }, | ||
{"nextExpectedRanges", (n) => { NextExpectedRanges = n.GetCollectionOfPrimitiveValues<string>().ToList(); } }, | ||
{"uploadUrl", (n) => { UploadUrl = n.GetStringValue(); } }, | ||
}; | ||
} | ||
|
||
/// <summary> | ||
/// Serializes information the current object | ||
/// <param name="writer">Serialization writer to use to serialize this model</param> | ||
/// </summary> | ||
public void Serialize(ISerializationWriter writer) | ||
{ | ||
_ = writer ?? throw new ArgumentNullException(nameof(writer)); | ||
writer.WriteDateTimeOffsetValue("expirationDateTime", ExpirationDateTime); | ||
writer.WriteCollectionOfPrimitiveValues<string>("nextExpectedRanges", NextExpectedRanges); | ||
writer.WriteStringValue("uploadUrl", UploadUrl); | ||
writer.WriteAdditionalData(AdditionalData); | ||
} | ||
|
||
/// <summary> | ||
/// Creates a new instance of the appropriate class based on discriminator value | ||
/// <param name="parseNode">The parse node to use to read the discriminator value and create the object</param> | ||
/// </summary> | ||
public static MockUploadSessionWithoutUploadSessionInterface CreateFromDiscriminatorValue(IParseNode parseNode) | ||
{ | ||
_ = parseNode ?? throw new ArgumentNullException(nameof(parseNode)); | ||
return new MockUploadSessionWithoutUploadSessionInterface(); | ||
} | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.