DocSpace-buildtools/thirdparty/onedrive-sdk-csharp-master/tests/Test.OneDriveSdk/Mocks/MockAuthenticationProvider.cs

24 lines
828 B
C#
Raw Normal View History

2020-07-10 15:37:02 +00:00
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
namespace Test.OneDrive.Sdk.Mocks
{
using System.Net.Http;
using System.Threading.Tasks;
using Microsoft.Graph;
using Moq;
public class MockAuthenticationProvider : Mock<IAuthenticationProvider>
{
public MockAuthenticationProvider()
: base(MockBehavior.Strict)
{
this.SetupAllProperties();
this.Setup(provider => provider.AuthenticateRequestAsync(It.IsAny<HttpRequestMessage>())).Returns(Task.FromResult(0));
}
}
}