// ------------------------------------------------------------------------------ // 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 { public MockAuthenticationProvider() : base(MockBehavior.Strict) { this.SetupAllProperties(); this.Setup(provider => provider.AuthenticateRequestAsync(It.IsAny())).Returns(Task.FromResult(0)); } } }