Skip to content

Commit 3a24f7d

Browse files
authored
Merge pull request #2653 from microsoftgraph/andrueastman/ImplementIUploadSession
fix: updated the UploadSession model to implement IUploadSession
2 parents 87d131a + a637159 commit 3a24f7d

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
namespace Microsoft.Graph.Models
2+
{
3+
public partial class UploadSession : Microsoft.Graph.IUploadSession
4+
{
5+
}
6+
}
7+
8+
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using Microsoft.Graph.Models;
2+
using Xunit;
3+
4+
namespace Microsoft.Graph.DotnetCore.Test.Extensions;
5+
6+
public class UploadSessionTests
7+
{
8+
[Fact]
9+
public void AddPublicEncryptionCertificate()
10+
{
11+
// arrange
12+
var uploadSession = new UploadSession();
13+
14+
// act
15+
Assert.IsAssignableFrom<IUploadSession>(uploadSession);
16+
}
17+
}

0 commit comments

Comments
 (0)